Skip to content

Latest commit

 

History

History
79 lines (46 loc) · 2.01 KB

File metadata and controls

79 lines (46 loc) · 2.01 KB

Interface: AndroidSigninResponse

Hierarchy

  • AndroidSigninResponse

Index

Properties

Properties

code

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.


Optional nonce

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.


Optional id_token

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

state: string

Defined in lib/index.d.ts:559

A copy of the state value that was passed to the initial request.


Optional user

user? : undefined | object

Defined in lib/index.d.ts:551

User object describing the authorized user. This value may be omitted by Apple.