Вход с Apple Redirect URI не работаетAndroid

Форум для тех, кто программирует под Android
Anonymous
Вход с Apple Redirect URI не работает

Сообщение Anonymous »

Я использую sign_in_with_apple < /p>
Проблема: хостинг проекта Glitch больше не доступен. Найдите больше информации в блоге Glitch. < /P>
Как перенаправить в приложение? < /P>
final credential = await SignInWithApple.getAppleIDCredential(
scopes: [
AppleIDAuthorizationScopes.email,
AppleIDAuthorizationScopes.fullName,
],
webAuthenticationOptions: WebAuthenticationOptions(
clientId: 'com.abc.app',
redirectUri:
// For web your redirect URI needs to be the host of the "current page",
// while for Android you will be using the API server that redirects back into your app via a deep link
Uri.parse(
'https://server.glitch.me/callbacks/sign_in_with_apple',
),
),
);


Подробнее здесь: https://stackoverflow.com/questions/797 ... ot-working

Вернуться в «Android»