Я использую sign_in_with_apple < /p>
Проблема: хостинг проекта Glitch больше не доступен. Найдите больше информации в блоге Glitch. 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', // glitch URI not working
),
),
);
Подробнее здесь: https://stackoverflow.com/questions/797 ... ot-working