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

I am working on a project using Next.js (App Router) and AWS Amplify Auth. I have implemented middleware to restrict access and redirect users based on a custom Cognito attribute (custom:...
Leo.roxy's user avatar
Advice
0 votes
6 replies
50 views

I have the following resource in Amplify v2: export const myFunction = defineFunction({ name: 'my-function', layers: { sharp: "sharp_arm64:1", }, environment: { BUCKET_NAME: ...
Nate's user avatar
  • 7,906
0 votes
1 answer
31 views

I have issue where I cannot map Long type in Swift. E.g. schema.graphql scalar Long input TableLongFilterInput { between: [Long] contains: Long eq: Long ge: Long gt: Long le: Long lt: ...
EnergyKickman's user avatar
0 votes
1 answer
42 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
0 answers
18 views

We've a 3 envs for our amplify project, one of being dev, from the branch dev/main, but, the actual domain it's for / that we're interested in is https://dev.seaders.com. The notification that comes ...
seaders's user avatar
  • 4,166
0 votes
0 answers
27 views

Logging const client = generateClient<Schema>(); results in the following, which shows that the client is improperly generated: { "models": {}, "enums": {}, "...
Kevvv's user avatar
  • 4,103
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
1 answer
61 views

I am doing a project which will use Google Login in NextJs This is my setting in OAuth 2.0 and in amplify environment variables After I deployed the app and try to login It redirect me to http://...
EQ0920's user avatar
  • 124
-1 votes
1 answer
86 views

I'm following the AWS Amplify Gen 2 documentation here: https://docs.amplify.aws/react-native/ai/generation/ exactly as it is written. Our ./amplify/data/resource.ts looks like this: const schema = a....
JDGrazer's user avatar
0 votes
0 answers
26 views

To integrate my apps with Active Directory I add the following to amplify/auth/resource.ts: externalProviders: { saml: { name: 'MyApp', ...
Duzmac's user avatar
  • 441
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
0 votes
1 answer
39 views

In an AWS Amplify backed application, I can define two data models Inventory and Order. Then Amplify generates a GraphQL API and underlying DynamoDB tables for these models. Then I can create a ...
Miguel Ferreira's user avatar
1 vote
0 answers
128 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
0 votes
0 answers
27 views

According to the latest documentation of Aws Amplify V6 ,to generate token we have to use onTokenReceived from aws-amplify/push-notification for implementing push-notifications on Mobile using react-...
Roohi Mathur's user avatar
0 votes
1 answer
56 views

I’m trying to connect my React webapp (Vite + TypeScript) to AWS IoT Core over MQTT WebSocket using Amplify GEN 1 with AWSIoTProvider. I've been following this docs I configured Amplify and PubSub ...
Coffeeye's user avatar
0 votes
1 answer
87 views

I'm deploying a nextjs app router project on AWS Amplify, not my personall preference but the client wants it on AWS When deploying, I found that the Amplify enforces minimal edge runtime on all of my ...
MohamedZh's user avatar
  • 476
0 votes
0 answers
72 views

Please help me to understand how to properly and correctly use the list-function of AWS Amplify. After running into many issues of existing data not being found/retrieved, I found out that if no "...
oleracea's user avatar
0 votes
1 answer
56 views

Major issues I have a Next.js application that previously ran without issues on Vercel. However, upon deploying it to AWS Amplify, I encountered a 500 Internal Server Error. Based on the CloudWatch ...
Miraj's user avatar
  • 59
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
0 votes
0 answers
28 views

I am trying to reference a directory of files in a lambda function using Amplify Gen2. I have created the folder in /functions/validateJsonAgainstSchema with the handler.ts file import Ajv2020 from '...
Zach Starnes's user avatar
  • 3,208
1 vote
1 answer
57 views

I'm writing a Gen2 Amplify application and I want to implement a post-confirmation trigger to call an external service and save part of the response as a custom attribute of the user's profile. My /...
TheRealJimShady's user avatar
1 vote
1 answer
56 views

I’m running into an issue with my AWS Amplify-hosted website, which is built using Vue 3 and Vite. When I load the main page (e.g., https://url.de/) and navigate to sub-pages (e.g., https://url.de/...
dennis_10-33's user avatar
0 votes
0 answers
35 views

Using the Nextjs 15 app router-based project and deploying on AWS Amplify. The project is a turborepo setup, and the configuration files are next.config.ts import { withSentryConfig } from "@...
Anuj TBE's user avatar
  • 9,922
0 votes
0 answers
526 views

I have a Next.js 15 application that builds successfully on AWS Amplify but returns a 404 error when accessing the deployed site. The build completes without errors, but the homepage and other routes ...
Anuj TBE's user avatar
  • 9,922
0 votes
0 answers
60 views

Deploys to Vercel just fine, but fails on the build in Amplify every time. Error: Cannot find module '@tailwindcss/postcss' Module not found: Can't resolve '@/auth' Module not found: Can't resolve '...
joffet's user avatar
  • 87
0 votes
1 answer
213 views

I have been using AWS Amplify Gen 2 without any issues until 1 month back. But Yesterday when I pushed some code and tried to deploy it, it failed. The error I got was: 2025-07-24T00:22:12.992Z [ERROR]...
defiant's user avatar
  • 3,353
0 votes
0 answers
22 views

I'm trying to fetch the user's attributes in my react app, after he signed in through Google as a social provider. I successfully sign in/up the user using the signInWithRedirect({provider: 'Google'});...
L_Cleo's user avatar
  • 1,567
1 vote
0 answers
63 views

I couldn't find any instructions on how to add listeners or ways to trigger a lambda function when events fire. I have a few lambdas set up as part of the sign-up/auth flow but I am struggling to get ...
Derek Ellsworth'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
0 answers
62 views

How to use guest() access to data in aws amplify gen2 ? While i have added the product as the owner, the product is not fetched while listing the products when i am not logged in. This is not working ...
Yashdeep Sharma's user avatar
1 vote
0 answers
49 views

In my React Native app, I need to open a WebView redirecting to my NextJS application. Its a simple page rendering a FaceDetection component from Amazon Amplify UI. The "problem" (which I ...
matheus-provin's user avatar
0 votes
0 answers
30 views

I'm implementing a Login screen with MFA using Amplify. However, I'm getting the following error when running the project: Uncaught SyntaxError: The requested module '/node_modules/.vite/deps/aws-...
Bruno Eduardo Martins BR's user avatar
0 votes
1 answer
81 views

I want to use both userPool and identityPool auth modes in my Amplify Gen 2 app. I need unauthenticated users to have read-only access, and authenticated users to have full access. But currently, I ...
Jetblackwings's user avatar
0 votes
0 answers
39 views

I am trying to build a graphql client to query/mutation on AWS appsync. I come up with the library aws-amplify. My appsync uses IAM authentication method. I created an IAM user in my AWS account and I ...
Joey Yi Zhao's user avatar
  • 43.3k
0 votes
1 answer
269 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
51 views

I am deploying a next app via AWS CDK using Amplify hosting. When navigating to the successfully deployed site, receive 'This .amplifyapp.com page can’t be found'. build spec is as so: buildSpec:...
Zen Biz's user avatar
0 votes
0 answers
57 views

I am working on a React app and am getting the following error Uncaught Error: Objects are not valid as a React child (found: [object Promise]). If you meant to render a collection of children, use an ...
lw_astg's user avatar
0 votes
0 answers
80 views

I have an Angular application with normal Angular internationalization (English & German). This means that my frontend is built once in English and once in German. It is located in the following ...
Daniel Weiß's user avatar
0 votes
0 answers
48 views

I use the aws-amplify library to fetch oauth tokens. In productive code a signIn takes less than 1 second. When executing the same functionality in jest (v29), the sign in takes around 6 seconds which ...
Fabi's user avatar
  • 1
0 votes
0 answers
34 views

I am trying to customize my login view using the AWS Amplify Authenticator. I've been following the documentation here. My problem is that I am unable to hide the Tab Buttons for Sign in and Create ...
Derek Ellsworth's user avatar
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
64 views

I have a .NET Web Api running on an AWS Elastic Beanstalk environment. It was assigned a domain: http://smart-qualify-api-uat.af-south-1.elasticbeanstalk.com/. I also built a website which I hosted on ...
Steez's user avatar
  • 29
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
1 vote
0 answers
56 views

I recently upgraded from Amplify 4.something (this has been working for ~3 years) to v6. I’m using aws-amplify v6.15 with React Native v0.79.2. I’ve also installed: "@aws-amplify/react-native&...
Paul Ronan's user avatar
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
1 answer
42 views

I have a NextJS application which is deployed on AWS Amplify. I have a function on the client side which creates a Word document using docx.js.org and my button onClick downloads the Word document (...
Rich's user avatar
  • 149
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
61 views

# context : AWS Amplify gen 2 (angular) According to Amplify doc https://docs.amplify.aws/angular/build-a-backend/data/customize-authz/ ,the available authorization strategies do not consider my case,...
Christian Renoux's user avatar
0 votes
0 answers
41 views

I have setup an OAUTH provider with Amplify (LinkedIn) but the URL called contains only 1 scope even though my scope array contains several in the configuration. Is it possible to specify to Amplify ...
dolor3sh4ze's user avatar
  • 1,213
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

1
2 3 4 5
99