Skip to content

Commit b593f02

Browse files
authored
docs(Auth0): reordered requested scopes to place FULL_NAME first (#330)
Refer to FAQ where order of scopes matters. https://github.com/invertase/react-native-apple-authentication#faqs
1 parent 029ce50 commit b593f02

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/Auth0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export default async function AppleAuthentication() {
2929
const appleAuthRequestResponse = await appleAuth.performRequest({
3030
nonceEnabled: false,
3131
requestedOperation: appleAuth.Operation.LOGIN,
32-
requestedScopes: [appleAuth.Scope.EMAIL, appleAuth.Scope.FULL_NAME]
32+
requestedScopes: [appleAuth.Scope.FULL_NAME, appleAuth.Scope.EMAIL]
3333
});
3434

3535
const credentialState = await appleAuth.getCredentialStateForUser(

0 commit comments

Comments
 (0)