Questions tagged [aws-amplify]

AWS framework for rapidly developing backends for mobile and web applications.

AWS Amplify provides the greatest common denominators for mobile backends, including authentication, analytics, notifications, storage, and offline realtime database AWS AppSync.

It works for Android, iOS, and Web clients, and provides integration with popular client runtimes such as React Native, React, Angular, and Ionic.

AWS Amplify provides a modern toolchain, including a powerful CLI and codegen.

See more at their website: https://docs.amplify.aws/

4787 questions
10
votes
4 answers

How can I deploy a new version of an existing Amplify app using the AWS/Amplify CLI without user interaction?

I am a newbie in using AWS Amplify and I just published my own frontend WebApp with it developed with React. I just zipped my build folder and dropped the resulting zip file in the AWS Console. It is working fine. However, the job is done manually…
Daan
  • 2,478
  • 3
  • 36
  • 76
10
votes
0 answers

AWS Cognito Error: No Cognito Identity pool provided for unauthenticated access

var normalAuth = async (username, password) => { try{ var user = await Auth.signIn(username, password) console.log(user) if(user.challengeName === "NEW_PASSWORD_REQUIRED"){ console.log("assigning new…
Carl
  • 457
  • 5
  • 23
10
votes
3 answers

AWS Amplify Auth Errors

I'm using the Android Amplify library. I am having trouble finding out what kind of error would be passed back from the Amplify.Auth.signIn() function. I'm not finding the documentation for this anywhere. Right now I am just kind of guessing as…
10
votes
2 answers

Customize email verification page AWS Cognito

I am using Amazon Cognito for user authentication. After the user is registered verification email is sent to his email address. After clicking on the email link he is prompted with this in his browser. How can I customize this page in order to…
10
votes
9 answers

Missing aws-exports.js always when building AWS Amplify React app with Amplify integrations

my React app uses GraphQL API, Storage, Auth, Functions, Hosting - all the fun stuff - so i must have an aws-exports.js file available. Amplify React Front end with Amplify Backend resources. Repo basically setup as: package.json src/ -…
mewc
  • 1,253
  • 1
  • 15
  • 24
10
votes
3 answers

Angular PWA update is too slow

I have an Angular 8 PWA app in production. I make a lot of updates regularly, so I need to find a way for users to get those updates when they open the app. Without special action, the app won't update. If you open the app on your browser, it will…
SeanRtS
  • 1,005
  • 1
  • 13
  • 31
10
votes
3 answers

Login to chrome extension via website with AWS amplify

I'm building a chrome extension and am trying to implement user login and sign-up. I originally had the sign-up and login functionality in the popup portion of my chrome extension but, after examining some of the more popular chrome extensions like…
10
votes
2 answers

Amplify CreateApp Permission

My goal is to finish initialising amplify on my Xcode project with amplify init command. In process of initialising amplify after I choose profile I get an AccessDeniedException. Here is the whole error: init failed AccessDeniedException: User:…
10
votes
0 answers

How to store relational (one to many or many to one) data with Amplify iOS (AppSync)?

today checking some of the amplify documentation (I know this one says it is a preview in the iOS scenario) but I have ran into a road block. Assumptions Amplify is correctly configured in my iOS project. I can push data to Person and query the…
rodrigoelp
  • 2,550
  • 1
  • 19
  • 29
10
votes
3 answers

React App not redirecting properly on AWS Amplify

This is my first time deploying a react app on AWS Amplify. The app works fine as a SPA, the only problem is re-directions. For example; when a user completely signs up and gets a link to verify email, clicking on the link redirects me to…
Chidi Nkwocha
  • 369
  • 1
  • 4
  • 6
10
votes
1 answer

SNS Mobile push notifications extremely confused

Right now I'm trying to send mobile push notifications to my phone when someone publishes a message to SNS. I'm confused about what services I have to use. Do I have to use a 3rd party service like Firebase Cloud Messaging/GCM to send mobile push…
10
votes
3 answers

DynamoDB schema updates with AWS Amplify

According to the AWS Amplify documentation: "objects annotated with @model are stored in Amazon DynamoDB"; "a single @model directive configures ... an Amazon DynamoDB table"; and one can "push updated changes with amplify push". It seems clear…
10
votes
2 answers

Integrate existing AWS Cognito user pool into iOS project with Amplify

I am trying to add AWS Cognito to my iOS application using AWS Amplify. The docs suggest to use amplify add auth on the CLI, but this does not seem to work with an existing User Pool (i.e. you have to create a new one). Is it possible to integrate…
sluijs
  • 4,146
  • 4
  • 30
  • 36
10
votes
1 answer

AWS-Amplify: Unauthenticated access is not supported for this identity pool

I'm using: https://github.com/aws-amplify/amplify-js Is there any working example how to use authenticated access to AWS? I'm using this: Amplify.configure({ Auth: { identityPoolId: configs.broker.identityPoolId, …
Anton Smatanik
  • 587
  • 1
  • 9
  • 25
9
votes
3 answers

AWS amplify graphql appsync - do not return deleted items?

I am using AWS amplify with graphql and appsync. When I do a standard list query, appsync includes deleted items in the list of items it returns. What can I do to make it return only items that are not deleted? I tried this query, but it throws an…
BitFunny
  • 196
  • 1
  • 10