amazon-cognito-identity-dart-2 icon indicating copy to clipboard operation
amazon-cognito-identity-dart-2 copied to clipboard

Unofficial Amazon Cognito Identity Provider Dart SDK, to easily add user sign-up and sign-in to your mobile and web apps with AWS.

Results 33 amazon-cognito-identity-dart-2 issues
Sort by recently updated
recently updated
newest added

Is otp login and signup available?

Hi, I've been looking at the examples and was not able to figure out how/if I would be able to get a pre-signed download URL for an object stored in...

SharedPreferences is an insecure way to store authenticated tokens or user session information because the Flutter Web implementation, shared_preferences_web, [just uses local storage. ](https://github.com/flutter/plugins/blob/master/packages/shared_preferences/shared_preferences_web/lib/shared_preferences_web.dart) Local storage is unsuitable for storing...

Hi, my last project used the javascript version. I am used to create and confirm new Users in tests without parsing a mailbox. The javascript code I am searching for...

import 'package:amazon_cognito_identity_dart_2/cognito.dart'; final userPool = CognitoUserPool( 'ap-southeast-1_xxxxxxxxx', 'xxxxxxxxxxxxxxxxxxxxxxxxxx', ); final cognitoUser = CognitoUser('[email protected]', userPool); final authDetails = AuthenticationDetails( username: '[email protected]', password: 'Password001', ); CognitoUserSession session; try { session = await...

I am working with a phone number and opt login. I entered the phone number pass the phone number value in step1 and I received opt entered the value in...

Greetings, I would like to ask how to add client metadata on the signUp request. We already made it work on the Kotlin one and we are migrating the app...

Once I get to set OpenID token to AWS Credentials, how do I need to proceed in order to get the user and the session? Thanks. ``` var credentials =...

I'm trying to use Google Sign In through Open Id Connect provider together with Cognito. I'm able to get the `CognitoCredentials` more or less like this: ```dart final aToken =...

Hi, I want to use my credentials to make s3 get requests. In my app it returns access denied error and when I use accessSecretKeyId and acessKeyId in postman, it...