• code: string
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.
• Optional
id_token: string
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
• Optional
nonce: string
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.
• state: string
A copy of the state value that was passed to the initial request.
• Optional
user: Object
User object describing the authorized user. This value may be omitted by Apple.
Name | Type |
---|---|
email? |
string |
name? |
Object |
name.firstName? |
string |
name.lastName? |
string |