反応するネイティブのベア アプリケーション (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.
よろしくお願いします。