Securely authenticate your app
response_type
: Must be code
.client_id
: Your application’s client ID.redirect_uri
: The URL where RocketSkip will redirect after authorization.scope
: Space-separated list of permissions.state
: A unique identifier to prevent CSRF attacks.redirect_uri
with an authorization code.
client_secret
securely and never expose it in front-end applications.state
parameter in authorization requests to prevent CSRF attacks.invalid_request
: Missing or malformed parameters.invalid_client
: Invalid client credentials.invalid_grant
: Authorization code or refresh token is invalid.unauthorized_client
: The client is not authorized for the requested grant type.access_denied
: The user denied the request.