- AndroidResponseType
- AndroidScope
- AppleButtonStyle
- AppleButtonType
- AppleCredentialState
- AppleError
- AppleRealUserStatus
- AppleRequestOperation
- AppleRequestScope
- AndroidConfig
- AndroidSigninResponse
- AppleAuthAndroid
- AppleButtonProps
- AppleRequestOptions
- AppleRequestResponse
- AppleRequestResponseFullName
Renames and re-exports appleAuth
Ƭ AndroidError: Object
Android
Name | Type | Description |
---|---|---|
NOT_CONFIGURED |
string |
Apple auth for Android wasn't configured. Be sure to call appleAuthAndroid.configure(options) . |
SIGNIN_CANCELLED |
string |
User cancelled (closed the browser window) the sign in request. |
SIGNIN_FAILED |
string |
- |
• AppleButton: { Style
: typeof AppleButtonStyle
; Type
: typeof AppleButtonType
} & React.FC
<AppleButtonProps
>
• appleAuth: Object
Name | Type | Description |
---|---|---|
Error |
typeof AppleError |
Errors that can occur during authorization. url https://developer.apple.com/documentation/authenticationservices/asauthorizationerror/code |
Operation |
typeof AppleRequestOperation |
Operation to be executed by the request. Request option used as part of AppleRequestOptions requestedOperation |
Scope |
typeof AppleRequestScope |
The contact information to be requested from the user. Only scopes for which this app was authorized for will be returned. Scopes used as part of AppleRequestOptions requestedScopes |
State |
typeof AppleCredentialState |
The current Apple Authorization state. |
UserStatus |
typeof AppleRealUserStatus |
Possible values for the real user indicator. url https://developer.apple.com/documentation/authenticationservices/asuserdetectionstatus |
isSignUpButtonSupported |
boolean |
A boolean value of whether the 'SignUp' Type variant of the Apple Authentication Button is supported. This will always return false for Android, and false for iOS devices running iOS versions less than 13.2 |
isSupported |
boolean |
A boolean value of whether Apple Authentication is supported on this device & platform version. This will always return false for Android, and false for iOS devices running iOS versions less than 13. |
getCredentialStateForUser |
(user : string ) => Promise <AppleCredentialState > |
- |
onCredentialRevoked |
(listener : Function ) => () => undefined | void |
- |
performRequest |
(options? : AppleRequestOptions ) => Promise <AppleRequestResponse > |
- |
• appleAuthAndroid: AppleAuthAndroid