@nycu-sdc/core-system-sdk
    Preparing search index...

    Type Alias responsesOauthAnswerCallbackResponse302

    OAuth provider redirects here after the user authorizes (or denies) the connection. The server exchanges the code for profile data, stores it as the answer for the question encoded in state, then redirects the user to r.

    The redirect URL (r) will always receive the following query parameters:

    Parameter Values Description
    status success | error Outcome of the OAuth flow.
    error OAuth error code (e.g. access_denied) Only present when status=error.

    Example redirects:*

    • Success: {r}?status=success
    • Failure: {r}?status=error&error=access_denied
    type responsesOauthAnswerCallbackResponse302 = {
        data: void;
        status: 302;
    }
    Index

    Properties

    Properties

    data: void
    status: 302