Mosh Ontong
This is my code for login phone session
TypeScript
@override
Future<am.Token> loginPhone({required String phoneNumber}) async {
try {
final sessionToken = await account.createPhoneSession(
userId: ID.unique(),
phone: phoneNumber,
);
return sessionToken;
} on AppwriteException catch (e, stackTrace) {
_logger.severe(
'Error logging in with phone number',
e,
stackTrace,
);
throw AccountException(
e.message ?? 'Error logging in with phone number',
stackTrace,
);
} catch (e, stackTrace) {
_logger.severe(
'Error logging in with phone number',
e,
stackTrace,
);
throw AccountException(
'Error logging in with phone number',
stackTrace,
);
}
}
Now when I want to resend code if ever the user want to resend the code. I use this code:
TypeScript
@override
Future<am.Token> createPhoneVerificationCode() async {
try {
final token = await account.createPhoneVerification();
return token;
} on AppwriteException catch (e, stacktrace) {
_logger.severe(
'Failed to create phone verification code',
e,
);
throw AccountException(
e.message ?? 'Failed to create phone verification code',
stacktrace,
);
} catch (e, stacktrace) {
_logger.severe(
'Failed to create phone verification code',
e,
);
throw AccountException(
e.toString(),
stacktrace,
);
}
}
TL;DR
Developers are encountering an "AppwriteException" error with the message "general_unauthorized_scope." This error occurs because the user, who has the role of "guests," is missing the "account" scope.
To resolve this issue, the user needs to be granted the "account" scope.
Additionally, the developers are also trying to resend a phone verification code. They have provided code snippets for the login process and code generation.
However, it is unclear if there are any issues with the code for resending the verification code. No specific errors or problems are mentioned in the thread. Mosh Ontong
This is the error:
But I got an error:
TypeScript
I/flutter (26118): ┌───────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
I/flutter (26118): │ AppwriteException: general_unauthorized_scope, User (role: guests) missing scope (account) (401)
I/flutter (26118): ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
I/flutter (26118): │ #0 _debugLogger (package:ems/src/core/guard_shell.dart:71:15)
I/flutter (26118): │ #1 guardShell.<anonymous closure> (package:ems/src/core/guard_shell.dart:40:5)
I/flutter (26118): │ #2 _RootZone.runUnaryGuarded (dart:async/zone.dart:1594:10)
I/flutter (26118): │ #3 _BufferingStreamSubscription._sendData (dart:async/stream_impl.dart:339:11)
I/flutter (26118): │ #4 _BufferingStreamSubscription._add (dart:async/stream_impl.dart:271:7)
I/flutter (26118): │ #5 _SyncBroadcastStreamController._sendData (dart:async/broadcast_stream_controller.dart:377:25)
I/flutter (26118): │ #6 _BroadcastStreamController.add (dart:async/broadcast_stream_controller.dart:244:5)
I/flutter (26118): │ #7 Logger._publish (package:logging/src/logger.dart:309:51)
I/flutter (26118): ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
I/flutter (26118): │ ⛔ SEVERE: 2024-02-11 15:06:19.643761: AccountService: Failed to create phone verification code
I/flutter (26118): └───────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
Mosh Ontong
But I am still receiving SMS code
Recommended threads
- Use CupertinoClient instead of IOClient ...
Hello all, At the moment, Appwrite SDK for Flutter uses default IOClient (from [http package](https://pub.dev/packages/http) ). Is there any way to override th...
- Appwrite Storage Related Issue
I/flutter ( 1784): Error updating profile image: AppwriteException: , ClientException with SocketException: Connection reset by peer (OS Error: Connection reset...
- Get File Preview or Download File?
Hey, I have a feed on my app and I wondered which option from above is smarter and which are the perks of each one.