我正在尝试在我的反应原生裸应用程序(不由 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.
我会很感激你的帮助。