Questions tagged [amazon-cognito-facebook]

Questions about the Amazon Cognito authentication using Facebook

66 questions
3
votes
1 answer

How to check if user login to AWS Cognito for the first time?

I'm using mobile hub and Amazon Cognito to authenticate user by using Facebook provider. Once use login with Facebook I need to check if this is first time login to the app or not. If it is first time I need to get some information and if it is…
Bernard
  • 4,240
  • 18
  • 55
  • 88
3
votes
2 answers

Unauthenticated access is not supported for this identity pool, while using DynamoDB

I am exploring AWS for iOS, I am trying to use following things, 1.DynamoDB 2.Cognito 3.Facebook LogIn I was getting AWS DynamoDB scan working when there wasn't any LogIn integrated. After integration LogIn with Facebook, I am configuring facebook…
2
votes
0 answers

How can I use google_sign_in with cognito

I have flutter project and I use cognito for auth and I use google_sign_in for login by google how can I connect these serves together is there anther way but without use web view
2
votes
0 answers

How to get JWT from Facebook credentials using Amazon Cognito user pool?

I've got credentials for Facebook after federated login with aws, but after successful login I was not getting any response or jwt token. I've tried with AWS Cognito authentication and tried with AWSCognitoCredentials provider but didn't found any…
2
votes
0 answers

Registering Facebook login users with aws-amplify.js

I configured both User Pool and Identity Pool in AWS Cognito manually. In User Pool, I’ve entered Facebook app ID, App secret, Authorize scope (public_profile and email), and then in Identity Pool, I entered User Pool ID and App client id for…
2
votes
1 answer

Mapping Facebook "cover" attribute to Cognito User Pool "Picture" attribute not working

I have mapped Facebook "cover" attribute to Cognito User Pool "Picture" attribute and it used to work. But now I'm getting 404 in the response of the Picture mapped to Cognito User Pool.
niqui
  • 1,562
  • 1
  • 16
  • 28
2
votes
0 answers

AWS Cognito for facebook users with serverless framework

I use Serverless Framework for AWS Serverless Application for creating REST Full API's. Requirement Any Users (e.g register, facebook, google) any devices (e.g Mobile or Web) use API that authenticates via JWT token. if the token is valid user can…
2
votes
0 answers

AWS Cognito Federated Identities, User Registration and DynamoDB

I wonder if anyone can help. I'm trying to plan the AWS services that I'll need, and how they hang together, for a web application I'm planning. Specifically I'm thinking about the user registration and login process using Cognito and…
2
votes
1 answer

Get Facebook user profile details of Amazon AWS Cognito authenticated user android

I've completed the authentication flow for Users using both UserPool and Federated identities of amazon cognito. I can successfully login using my facebook credentials but i'm not able to get the users public profile information. I have tried to get…
2
votes
0 answers

AWS Cognito Federated Identity + Facebook: suggested logout flow

Looking at http://docs.aws.amazon.com/cognito/latest/developerguide/facebook.html there is an example of how to code up a login using AWS Cognito + Facebook. However, I’m unable to find examples of a logout flow. Because of the 3 parties…
2
votes
1 answer

Amazon Cognito facebook login on Angular 2

I am new to Amazon AWS cognito. can someone help to implement the facebook login on cognito. I have finished the steps give by cognito got logged in facebook and send that access token to cognito. Here is my code. fblogin() { this.fb.login() …
2
votes
2 answers

aws cognito with facebook login? - android

so im really confused on how the facebook login works with aws cognito in android. I was able to hook aws cognito up and the facebook log in just fine. The aws cognito guide gives me these lines of code: Map logins = new…
2
votes
1 answer

How to send the Access Token in order to access AWS services - BEGINNER

I followed the following tutorial and got the facebook login working. At the end it prints out the accessToken which is great. FB.login(function (response) { // Check if the user logged in successfully. if (response.authResponse) { …
2
votes
2 answers

[iOS][AWS Cognito] 'logins' is deprecated: Use "AWSIdentityProviderManager"

I’ve been trying to authenticate user with Facebook and Twitter on iOS with Amazon Cognito. I can’t implement because Official documents is old. Here is my code: NSString *token = [FBSDKAccessToken currentAccessToken].tokenString; …
2
votes
0 answers

How to create a folder in AWS S3 using AWS Lambda for a user authenticated by Cognito

I am trying to invoke a lambda function that creates AWS resources (S3 folder and DynamoDB Item) for authenticated users. Lambda function will be invoked from client side after the user is logged in through AWS Cognito. Making an S3 putObject…