- AndroidSigninResponse
• code: string
Defined in lib/index.d.ts:582
A short-lived, one-time valid token that can provides proof of authorization to the server component of your app.
The authorization code is bound to the specific transaction using the state attribute passed in the authorization request. The server component of your app can validate the code using the Apple identity service endpoint.
• nonce? : undefined | string
Defined in lib/index.d.ts:546
Nonce that was passed to the identity provider. If none was passed to the request, one will have automatically been created and available to be read from this property, unless nonceEnabled is false. NOTE: This value will be SHA256 hashed before sending to Apple.
• id_token? : undefined | string
Defined in lib/index.d.ts:572
A JSON Web Token (JWT) used to communicate information about the identity of the user in a secure way to the app.
The ID token contains the following information signed by Apple's identity service:
- Issuer Identifier
- Subject Identifier
- Audience
- Expiry Time
- Issuance Time
• state: string
Defined in lib/index.d.ts:559
A copy of the state value that was passed to the initial request.
• user? : undefined | object
Defined in lib/index.d.ts:551
User object describing the authorized user. This value may be omitted by Apple.