From 45d12fa98b4a076634db901beaf0b39badde5c86 Mon Sep 17 00:00:00 2001 From: mitelone Date: Thu, 1 Mar 2018 18:08:00 +0400 Subject: [PATCH] Update App.js --- App.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/App.js b/App.js index e37f958..0351b4b 100644 --- a/App.js +++ b/App.js @@ -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, }), }); @@ -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, }), }); @@ -115,4 +115,4 @@ const styles = StyleSheet.create({ textAlign: 'center', marginTop: 40, }, -}); \ No newline at end of file +});