Questions tagged [flutter-aws-amplify]

52 questions
4
votes
1 answer

Submit for login review. Some of the permissions below have not been approved for use by Facebook

I'm implementing Facebook login for my Flutter app. My backend is AWS Amplify. When trying to login with my Facebook account, I'm facing this warning message. My understanding is that the review is only necessary if the app requires information…
2
votes
0 answers

What does ConnectionProviderError means in Amplify AppSync in Flutter SDK

We are using Flutter SDK for Amplify AppSync for using Real Time Subscription. https://pub.dev/packages/amplify_api Sometime we receive error on AppSync subscription. As mentioned below Error thrown ApiException(message: Subscription item event…
2
votes
0 answers

Integrate AWS s3 bucket with flutter

I'm creating flutter application with Firebase authentication. But I need to store some recording files (mp3) to cloud storage. I need to use aws s3 as a requirement. So I tried to integrate the that with flutter. I have found official plugin called…
2
votes
0 answers

Amplify Flutter S3 file download using Cognito

I was trying to access S3 bucket protected contents from Flutter Amplify framework. I have configures Auth and Storage plugins in Amplify by following Amplify docs. But I was receiving access denied exception upon file…
1
vote
0 answers

S3 access denied in flutter app while using aws amplify storage

I have been using AWS amplify storage to store my JSON files. Also I have done all the setup needed to perform crud operations to a bucket in s3. All of a sudden, I am not able to retrive data from the s3 bucket and I am getting an error Error…
1
vote
0 answers

Flutter and Amplify Authenticator

I'm new to Flutter and AWS amplify so this may be basic but looking for help. I am creating a test mobile application with flutter. In the application, the user will be able to journal (like a diary). This information will be stored in a database…
SarahB
  • 11
  • 1
1
vote
0 answers

Is there a way to get a permanent download url for images in AWS Amplify Storage? (Flutter)

I need to regenerate a url to download images from AWS Amplify S3 when the token expires. Is there no permanent way to get a link for a specific image? Thank you!
MaryKor
  • 47
  • 5
1
vote
1 answer

Difficulty setting up AWS Amplify GraphQL data subscriptions

I am following the official online guide as well as this tutorial on how to set up subscriptions to data. I will be giving my two unfruitful attempts in this issue. I am using this configuration for both: imports: import 'dart:async'; import…
1
vote
0 answers

AWS S3 storage does not give a valid URL after uploading file

I am new to AWS. I use Amplify to upload a video file to S3 storage using Flutter. I want to get the URL after uploading a video to use it elsewhere. I use Amplify.Storage.getUrl(key)).url to get the URL. But when I want to go to the link via the…
1
vote
1 answer

Datastore plugin has not been added to amplify Flutter

I follow the Amplify tutorial to make a todo app and got this error in return on the fist run anyone know why ? I have read another similar question on Stackoverflow but it didn't solve the problem for me so is there any other way.
Ken
  • 57
  • 6
1
vote
0 answers

Is it possible to nest simple objects in AWS Amplify without requiring them to have a primary key? (Flutter)

I'm defining a simple schema for AWS Amplify in Flutter. Something like this: type Marker { start: Float! end: Float! } type DataPoints @model { id: ID! name: String! description: String! markers: [Marker!]! } The point is that…
1
vote
0 answers

Flutter: First time user onboarding with AWS Amplify

Im looking for a way to show a first time on boarding screen when you register with the app. It is required for me because users must join a Model called families and none of the widgets will show up if the user isn't part of the model. I tried…
1
vote
1 answer

Unable to make modifications to amplifyconfiguration.dart

Background I have created a new flutter project and initialised amplify using amplify init then added an api using amplify add api What am I trying to do? I am trying to change my REST API from an authorizationType of AWS_IAM to API_KEY and I am…
1
vote
2 answers

Flutter AWS Auth: How to get custom user attribute?

How do I get in Flutter, the cognito custom user attribute for user? await Amplify.Auth.fetchUserAttributes(); returns only user attributes but not the custom defined ones. (I have added the attribute to the schema and I am sure it's there, in the…
1
vote
1 answer

AWS Amplify Flutter: how to create platform endpoint?

Short version of my question: I have a Flutter mobile app that uses AWS Amplify to handle user sign-up and log-in. Now I need to add push notification capability (with AWS SNS, APN etc.) to the app, and in particular I need to let the app itself to…
ycsun
  • 1,825
  • 1
  • 13
  • 21
1
2 3 4