Skip to content
This repository was archived by the owner on Feb 21, 2020. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions App.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export default class App extends React.Component {
authUrl: `${auth0Domain}/authorize` + toQueryString({
client_id: auth0ClientId,
response_type: 'token',
scope: 'openid name',
scope: 'openid profile', // make sure the OIDC-compliant flag is off in the Client OAuth settings page
redirect_uri: redirectUrl,
}),
});
Expand All @@ -63,7 +63,7 @@ export default class App extends React.Component {
connection: 'twitter',
client_id: auth0ClientId,
response_type: 'token',
scope: 'openid name',
scope: 'openid profile', // make sure the OIDC-compliant flag is off in the Client OAuth settings page
redirect_uri: redirectUrl,
}),
});
Expand Down Expand Up @@ -115,4 +115,4 @@ const styles = StyleSheet.create({
textAlign: 'center',
marginTop: 40,
},
});
});