Questions tagged [aws-userpools]

219 questions
2
votes
1 answer

Unable to POST to AWS S3 from Javascript. Malformed XML error

I'm trying to upload some audio recording to S3 from javascript but get a the following error: MalformedXML: The XML you provided was not well-formed or did not validate against our published schema Console Logs: POST…
Jaskaran Singh Puri
  • 729
  • 2
  • 11
  • 37
2
votes
0 answers

Configure SiteMinder as AWS Cognito userpool identityProvider using SAML2

When cognito sends the SAMLREQUEST to the IDP the request does not have all the information that the IDP is expecting. SP is sending the following request:
canoodler
  • 21
  • 4
2
votes
0 answers

Add User Pool on Cross-Account Identity Pool

I have a multiple AWS account w/ Cognito User Pool and another AWS account w/ Cognito Identity Pool. Is there any way to add those Cognito User Pools to Cognito Identity Pool on another AWS Account? or can I connect them via OpenID, SAML or Custom…
2
votes
1 answer

How to add a user into a AWS Cognito userpool group?

I'm using AWS Cognito to implement the user sign-up and sign-in in my iOS APP (Swift). When a user signed up, I want to add the user into a specified user pool group which has already been created in my cognito user pool. I have tried the swift code…
2
votes
1 answer

How do I fix "domainnsposixerrordomain code13 permission denied" runtime error in AWSCognito code?

I am getting a runtime error that says: [NetworkInfo] Signal strength query returned error: Error Domain=NSPOSIXErrorDomain Code=13 "Permission denied", descriptor: in my code where the variable "task" is declared. I marked the line that…
daniel
  • 1,446
  • 3
  • 29
  • 65
2
votes
2 answers

Serverless keeps trying to create user pool domain when it already exist

I have a aws cognito user group configured to my serverless.yml. Whenever I do a serverless deploy, it will try to create the same user pool domain even though it already exist, hence returning me the error of: [aws-cognito-idp-userpool] domain…
2
votes
1 answer

Using Cognito Admin API to create users

I have created a user pool in Cognito as 'Only allow administrators to create users' . Now I wish to add users from my react application, but I am failing to understand which APIs to call to add users and to force change password for the first…
2
votes
2 answers

Can you connect the same AWS user pool to a React Native and React App?

I have used AWS Amplify ("amplify add auth" in the terminal) to create a user pool in AWS Cognito with my React Native app but I don't know how to connect this same user pool to my React App. As far as I can see the Amplify Cli only gives options to…
2
votes
0 answers

Relationship between AWS Cognito User Pool and Identity Pool

How are the items in the user pool and the identity pool linked? How can I lookup the Cognito identityId based on Cognito user sub? How can I lookup the Cognito user sub based on Cognito identityId? Also, I currently use the Cognito identityId as…
haxpanel
  • 4,402
  • 4
  • 43
  • 71
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
1 answer

Display something else than username in Cognito Built-In Sign-In Page

In AWS Cognito, username is unique and cannot be changed, that's why I'm using it with an internal auto-generated ID. Most of Cognito API requests like adminGetUser only uses username as the user identifier. And this is recommended by AWS: If your…
Yves M.
  • 29,855
  • 23
  • 108
  • 144
2
votes
1 answer

How to use Federation from a User Pool (not from an Identity Pool)!

I'm trying to use Federation from a User Pool. Note, I am not talking about Federated Identity Pool a different concept. Is there a SignIn API for federated users or is just a hosted UI Does the app "have to" open a browser on a Sign In URL that…
mipnw
  • 2,135
  • 2
  • 20
  • 46
1
vote
0 answers

How to determine if existing AWS Cognito user pool is case sensitive?

I have an existing user pool (I don't know who created it) and I'm wanting to know if this was created with the case sensitivity option set for username/email. I can't find this information in the console and the things I've read indicate that this…
Alan Moore
  • 6,525
  • 6
  • 55
  • 68
1
vote
0 answers

AWS cognito SRP calculations on JS browser app

I'm a webDev and I need to integrate a login page using AWS cognito User Pools. I can't use the integrated UI so I'm using @aws-sdk/client-cognito-identity-provider. I'm not in a secure server environment and can't keep secrets so I'd like to use…
1
vote
0 answers

Server-side user verification with AWS Cognito user pool via MFA verification code (without password)

On the server side using NodeJS + NestJS, TS: 4.7.4, "aws-sdk": "^2.1138.0". Trying to send a request to AWS Cognito, to obtain a verification code on mobile phone. It's far away from achieving SMS quota. An example of my method from the service: …