Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
39 views

Our games built using Unity, use Google Play Games Services v1 to support Google Signin. Once the player is signed in, token is obtained using: token = PlayGamesPlatform.Instance.GetIdToken(); and ...
Chandan Pawaskar's user avatar
Advice
0 votes
2 replies
32 views

I have this Cognito group tied to its corresponding AD group, with lots of old members who don't even have access anymore because they were removed from AD. I'd really like to clean that up. I think I ...
aercolino's user avatar
  • 2,386
0 votes
1 answer
41 views

I’m integrating AWS IoT Core with a Flutter app that already uses Amplify Auth (Cognito User Pool). To allow IoT connections, I added a Cognito Identity Pool section to my amplifyconfiguration.dart (...
Jashwanth Neela's user avatar
0 votes
1 answer
76 views

I’m using AWS Cognito with Google as an Identity Provider in a Next.js app. I am using AWS managed login as well. Sign-in works correctly, tokens are received, and the user session persists. However, ...
codernoob8's user avatar
1 vote
0 answers
58 views

How can I determine which Identity Provider (IdP) a user used to sign in during the AWS Cognito PreAuthentication trigger, when multiple federated IdPs (SAML/OIDC) are linked to the same user? In the ...
saish rane's user avatar
1 vote
0 answers
57 views

I am using Amplify and Cognito's hosted UI Login page to handle my user authentication. I am able to redirect to the cognito hosted page, enter my user credentials, and redirect page to my sign in ...
hankyypankyy's user avatar
0 votes
0 answers
67 views

I am trying to get users to be able to log in via a Cognito account and use those credentials to make calls on a backend API. To that end I have been trying to import the Cognito libraries in an ...
SaturnBowerBird's user avatar
1 vote
0 answers
46 views

I have a Next.js 15 project that uses AWS Amplify (Cognito) for authentication. Here’s a simplified version of my config file: "use client" import { Amplify, type ResourcesConfig } from &...
user31691452's user avatar
1 vote
0 answers
127 views

After upgrading my React Native project to Expo SDK 54 (React Native 0.81.4), the login flow using AWS Amplify Auth (Cognito v5) stopped working. When calling Auth.signIn(username, password) I get ...
Pablo Varas's user avatar
1 vote
1 answer
113 views

I have an Amplify Gen 2 app with Google SSO. When developing locally and when using AWS generated domains like https://dev.app_id.amplifyapp.com Google SSO works great. On Google Cloud credentials ...
victor.ja's user avatar
  • 927
-1 votes
1 answer
101 views

I currently have an admin console that is served a BFF layer and 2 REST microservices - product microservice and user microservice. The user microservice stores information on login users as well as ...
Russell's user avatar
0 votes
0 answers
57 views

I created an user pool, I can login with Gmail through HostedUI successfully, but when checking the session, returned by Cognito, no refresh token is given back, only Access Token and Id Token. I ...
user1869935's user avatar
0 votes
0 answers
32 views

I’m trying to authenticate users via Google in my React Native iOS app, then verify the ID token in AWS Cognito to assume a role and access AWS resources. Here’s my setup: Google OAuth 2.0 Clients: ...
scarface764's user avatar
0 votes
0 answers
44 views

I'm working on creating a custom login and sign-up page using AWS Cognito with the SRP (Secure Remote Password) authentication flow. For handling the session, I’m using Auth.js (previously NextAuth), ...
Sundar Gopal Nag's user avatar
2 votes
0 answers
46 views

I'm trying to authenticate to AWS cognito using the @aws-sdk/client-cognito-identity-provider library // Truncated code import { AuthFlowType, CognitoIdentityProviderClient, InitiateAuthCommand,...
Gummi A's user avatar
  • 21
0 votes
0 answers
34 views

I want to write a report against a list of AWS Cognito users. Generating the report requires calling non-AWS APIs that require a Cognito access token for the particular user. How can I generate such ...
Johnny Petro's user avatar
0 votes
0 answers
53 views

I am trying to use a code like the following to logout using AWS Cognito: private navigateToLogout(): void { try { const clientId = '1234213421423'; const currentUrl = window....
adrCoder's user avatar
  • 3,315
0 votes
0 answers
64 views

I am making a react native app i am using using aws social providers to login it works fine but when i click on login with google it opens a chrome tab in my app and it shows my aws user pool url link ...
Hammad Iqbal's user avatar
0 votes
0 answers
30 views

There are possible duplicates for this issue but none of that given me any solution yet. My app is signed in with phone number in Cognito and inside the app there are options to connect with Google, ...
Sins97's user avatar
  • 411
0 votes
1 answer
53 views

I am trying to create a script for my application which has amazon cognito login form, I tried using the below script to generate state and nonce value. there are two different nonce values passed in ...
Poovitha Prasannaa's user avatar
1 vote
1 answer
80 views

I've been trying to use Amazon Bedrock as a Identity Pool Guest. After attaching correct policies (even Bedrock Full Access) to the Guest Role, I am still getting "Message": "User: arn:...
Kamil Kuriata's user avatar
0 votes
1 answer
266 views

I'm getting an OAuthNotConfigureException: oauth param not configured error when trying to use Google OAuth with AWS Amplify v6, even though my configuration appears correct. Environment: AWS Amplify ...
jaramator's user avatar
  • 310
0 votes
0 answers
52 views

I'm getting NotAuthorizedException(message=Token is not from a supported provider of this identity pool.) despite google being added as a identity provider in my Cognito Identity Pool with the Web ...
Nick Fusaro's user avatar
0 votes
1 answer
41 views

I am experimenting AWS cognito, I am using spring boot as backend, I am able to login&logout but the only problem i have added a custom attribute ( sector ) and it is not being returned when I do ...
Ed .d's user avatar
  • 23
0 votes
1 answer
187 views

We're implementing authentication for multiple SPAs across subdomains of the same parent domain (e.g. app1.mycompany.com, app2.mycompany.com) using AWS Cognito, a custom login UI, and a centralized ...
Lovitha's user avatar
  • 37
0 votes
0 answers
55 views

I’m working on a Unity project using: Unity version: 2022.3.36f1 API Compatibility Level: .NET Standard 2.1 Platforms: Happens on Unity Editor, Android device, and iOS device AWS SDK version: 4.0.29....
Eduardo Coelho's user avatar
0 votes
1 answer
270 views

I'm struggling to get my head around the HTTP only cookie setup with Cognito when not using the Managed Login. I had successfully used the AWS SDK on the client-side to InitiateAuth and retrieve ...
abdlost's user avatar
  • 51
0 votes
1 answer
208 views

I'm using AWS Cognito with Authorization Code Grant flow for authentication in my Angular application. I’ve configured the following: Authorization flow: Authorization Code Grant Domain and redirect ...
Lovitha's user avatar
  • 37
0 votes
0 answers
32 views

I am working on ionic app where have implemented google sso and apple sso. Previously we had issue, after even logout it was not clearing the cookies from the browser and if login again with sso it ...
Snehil Sparsh's user avatar
0 votes
1 answer
59 views

Repro steps: Verification emails work as handled by Cognito thanks to the IaC setting for UserPool (this one: AutoVerifiedAttributes: - email ) 2. add a Lambda function trigger to the userpool (e.g ...
Arkadiusz Kulpa's user avatar
0 votes
1 answer
145 views

I'm building SSO using OpenID Connect between two apps: App1 (frontend and backend done in PHP), hosted at app1.stk.in App2 (frontend in Angular and backed in Python), hosted at app2.cloud.net Both ...
Lovitha's user avatar
  • 37
0 votes
0 answers
133 views

We are using the prompt=none method for silent login in our system. We have multiple applications that share the same user pool, but each application is hosted on a different domain. Our requirement ...
Lovitha's user avatar
  • 37
0 votes
0 answers
38 views

With /oauth2/authorize it leaves cookies in the browser. For the /logout, it only clears cookies but doesn't revoke any access so essentially it does nothing except cleaning up the browser. While /...
Renz Carillo's user avatar
0 votes
1 answer
46 views

I am trying to create a UUID for a Cognito user upon signup but also want to make it immutable. Currently I am using the AWS Pre-signup trigger but because UUID is immutable and called after the ...
garmfield's user avatar
0 votes
0 answers
36 views

I am creating a VR game that requires AWS since I am using a lot of database storage, which I am setting up a Cognito Identity Pool for. I am using a Lambda function to automate all the authentication ...
Liam Shumaker's user avatar
0 votes
1 answer
46 views

I recently set up authentication on Cognito via Amplify and am trying to set up mail verification. This verification can be done as long as the user has just created an account. However, I can't send ...
dolor3sh4ze's user avatar
  • 1,213
0 votes
1 answer
266 views

I have set up an OIDC Single Page App (SPA) in Okta applications with Grant type is Authorization Code. Then, I added a Federated identity provider sign-in in AWS Cognito with Client ID from the Okta ...
Hugh Bui's user avatar
0 votes
0 answers
46 views

I setup federated login to Cognito with Entra Id as the IdP. When I require encryption, the user name created is encrypted. When I don't require encryption, the username is not encrypted. Shouldn't ...
prike's user avatar
  • 51
0 votes
0 answers
47 views

I'm using AWS cognito for login. For silent login i'm calling prompt=none url. Its working fine. Actually why we use this is we have other sites also there also we can sign In to cognito when we ...
Lovitha's user avatar
  • 37
1 vote
0 answers
381 views

I'm implementing "Sign in with Apple" on a web application using the standard OAuth 2.0 flow. Occasionally, requests to the https://appleid.apple.com/auth/authorize endpoint fail with an ...
Júlio Saldanha's user avatar
0 votes
0 answers
37 views

Resetting MFA in Cognito seems to be an actual pain. Our Cognito pool is set to Required currently as we need to make sure MFA is on for all users due to compliance. Resetting the SMS factor seems to ...
Hughesey's user avatar
  • 457
0 votes
1 answer
147 views

I'm building a React application with Vite that uses AWS Cognito for authentication. I'm having issues with environment variables not being properly loaded or accessible in my application. ...
Mauricio Pastora's user avatar
0 votes
0 answers
74 views

I have an AWS API Gateway resource /foo with a GET method. It has a Lambda integration, which for the purposes of this question simply returns bar. However I want the API to be protected, so I have ...
Garret Wilson's user avatar
0 votes
0 answers
53 views

I'm trying to clarify the right architecture for using AWS Cognito with Google Sign-In on mobile (Flutter/Android/iOS). I’ve already implemented a working version using Cognito User Pools with Google ...
Soroush Rabiei's user avatar
0 votes
1 answer
102 views

I’m trying to build a collaborative editor using Remirror and Yjs, but I’m encountering an error when adding the YjsExtension. As soon as I include it, the following error appears in the browser ...
Vishal Mishra's user avatar
-1 votes
1 answer
141 views

I have an AWS CloudFormation stack that sets up a Cognito user pool and user pool app. I created a simple Vue front end and I'm experimenting how to authenticate it using Cognito. I understand I can ...
Garret Wilson's user avatar
1 vote
1 answer
230 views

In the Cognito CloudFormation resourceAWS::Cognito::UserPoolClient documentation for ExplicitAuthFlows it says: ALLOW_USER_AUTH: Enable selection-based sign-in with USER_AUTH. This setting covers ...
Garret Wilson's user avatar
0 votes
0 answers
56 views

I have a cdk L2 cognito.UserPool (see below). I only want email and password authentication. I want users to be able to change their email. I want their email to be verified either at sign up or upon ...
George Bentz's user avatar
0 votes
1 answer
138 views

I have a particular auth flow that requires us to verify a user's email domain before allowing them to login, but we also want them to be able to log in with any method they want The login flow looks ...
transposeglobal's user avatar
0 votes
0 answers
54 views

I’m migrating my app to Expo SDK 52 (Hermes) and using AWS SDK v3 to call Cognito from React Native: import { CognitoIdentityProviderClient } from '@aws-sdk/client-cognito-identity-provider'; import { ...
Pasquale Fioretti's user avatar

1
2 3 4 5
147