You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
here everything working and redirecting after redirecting it didnt execute any of the below code why i made breakpoints and tried it.After oauth.login it didnt execute below code.try {
final result = await oauth.login(refreshIfAvailable: true);
// String? accessToken = await oauth.getAccessToken();
result.fold(
(error) {
showError(error.toString());
},
(success) async {
showMessage(success.refreshToken ?? 'Nodata');
await Future.delayed(const Duration(seconds: 1)); // Add a small delay
final result =
The text was updated successfully, but these errors were encountered:
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. If you still think this issue is needed, reopen it again.
here everything working and redirecting after redirecting it didnt execute any of the below code why i made breakpoints and tried it.After oauth.login it didnt execute below code.try {
final result = await oauth.login(refreshIfAvailable: true);
The text was updated successfully, but these errors were encountered: