我正在尝试在我的本机裸机应用程序(不受Expo管理)中使用Expo.AppAuth实施Google身份验证。
我正在使用expo-app-auth软件包。
我使用以下捆绑包ID“ org.reactjs.native.example.MyApp”在Google Developer Console上创建了客户端ID。
这是我的代码:
import * as AppAuth from 'expo-app-auth';
AppAuth.authAsync({
issuer: 'https://accounts.google.com',
clientId: '<My_Client_ID>',
scopes: ['profile', 'email'],
});
上面的代码重定向到Safari,并显示以下错误:
Safari cannot open the page because it could not establish a secure connection to the server.
感谢您的帮助。