Mike Nichols
Mike Nichols
It isn't supported in this. One user posted some code [here](https://forums.aws.amazon.com/thread.jspa?threadID=243091&tstart=0) that gave me a jump no connecting using user pools though. ~It isn't clear what the roadmap is for...
Ok I was able to use AWSRNCognitoCredentials with the CognitoUserPool backing. A few things I needed to do for understanding this non-documented thing: ### JS bug The `AWSCognitoCredentials.js` has a...
@lielran the first drop of this SDK isnt concerned with the UserPool portion, but rather the Cognito Identity Provider side of the story which isnt concerned about login/logout. I had...
@MathieuMailhos there is a missing bit in the Java stuff from that download. Follow the ReactNative docs for creating Native bridges for Android. Specifically make sure your MainActivity and MainApplication...
Ah..that's wrong. The module is found at `NativeModules.Cognito`. So you can `const { Cognito } = NativeModules` and that should werk On Sat, Jan 7, 2017 at 3:38 PM, Mathieu...
The idToken you get from Cognito's identity provider is what you use to connect to AWS services. The way you obtain that idToken depends on how you have integrated your...
This bug is due to the destructuring bug found [here](https://github.com/awslabs/aws-sdk-react-native/blob/master/Core/src/AWSCognitoCredentials.js#L48). Change it to ``` listener.addListener("LoginsRequestedEvent", async ({callbackId}) => { ``` And the event being raised as a dictionary (from native)...
@FearMediocrity you are importing `AWSCognitoCredentials` but are calling `ASCognitoCredential` which is undefined. (note the missing `W`)?
Maybe my answer here can help : https://github.com/awslabs/aws-sdk-react-native/issues/24#issuecomment-267746814
When I called `react-native link` it didnt seem to link the Core product to my project so I followed the 'manual linking' instructions [here](https://facebook.github.io/react-native/docs/linking-libraries-ios.html) to get past this. So you...