Provider-specific OAuth callback (POST)
Client
Provider-specific OAuth callback (POST)
OAuth callback endpoint for providers that use POST (e.g., Apple with form_post response mode).
Response varies based on the original OAuth initiation:
- With code_challenge (PKCE): Redirects with
insforge_codefor exchange endpoint - Without code_challenge (web): Redirects with
access_tokenand sets httpOnly cookie
POST
Provider-specific OAuth callback (POST)
Path Parameters
Available options:
google, github, discord, linkedin, facebook, instagram, tiktok, apple, x, spotify, microsoft Body
application/x-www-form-urlencoded
Response
302
Redirect to application.
- PKCE flow: redirect_uri?insforge_code={code}&user_id={id}&email={email}&name={name}
- Web flow: redirect_uri?access_token={token}&user_id={id}&email={email}&name={name}&csrf_token={csrf}