Git Product home page Git Product logo

Comments (15)

Jordan-Nelson avatar Jordan-Nelson commented on June 11, 2024 1

@satsin06 - If you used the Amplify Gen 1 CLI, unauthenticated users will only be able to upload to files in the "public/" directory. Please try uploading a file to that directory.

Amplify Gen 2 allows for more flexible storage authorization. You can read more about Gen 2 storage here: https://docs.amplify.aws/flutter/build-a-backend/storage/authorization/

The Gen 2 docs currently have a callout that it is not available Flutter yet. It is available as long as you are using the Amplify Flutter v2 which was released recently.

from amplify-flutter.

Jordan-Nelson avatar Jordan-Nelson commented on June 11, 2024

Hello @androidshivam - Thanks for opening the issue. I have a few follow up questions to help us triage this.

Can you confirm that you created the S3 bucket with the Amplify CLI? The Amplify CLI allows your to set auth rules for guest and authenticated users. Can you let us know what rules you enabled?

Is there currently a user signed in when the issue occurs?

Can you update the code snippet as follows and share the logs?

Future<String?> uploadFile(io.File file) async {
    try {
      final awsFile = AWSFilePlatform.fromFile(file);
      final uploadResult = await Amplify.Storage.uploadFile(
        key: 'upload/file.jpeg',
        localFile: awsFile,
        options: StorageUploadFileOptions(
          accessLevel: StorageAccessLevel.guest
        ),
        onProgress: (progress) {
          safePrint('Fraction completed: ${progress.fractionCompleted}');
        },
      ).result;
      safePrint('Uploaded file: ${uploadResult.uploadedItem.key}');
    } on StorageException catch (e) {
      safePrint('Could not retrieve properties: ${e.message}');
      safePrint(e.underlyingException.statusCode);
      safePrint(e.underlyingException.body);
      safePrint(e.underlyingException.message);
      safePrint(e.underlyingException.message);
      safePrint(e.underlyingException.underlyingException);
      rethrow;
    }
  }

from amplify-flutter.

androidshivam avatar androidshivam commented on June 11, 2024

Hello @Jordan-Nelson , I've created the bucket directly on browser using root user access and the changes in logs doesn't able found in library getting this error (The getter 'statusCode' isn't defined for the type 'Object'. )

safePrint(e.underlyingException.statusCode);
safePrint(e.underlyingException.body);
safePrint(e.underlyingException.message);
safePrint(e.underlyingException.message);
safePrint(e.underlyingException.underlyingException);

from amplify-flutter.

Jordan-Nelson avatar Jordan-Nelson commented on June 11, 2024

If you created the bucket manually have you followed these docs to import the bucket? Have you added the appropriate IAM policy?

If you are just getting started, I would recommend you use the CLI to create the bucket as it will set this up for you.

from amplify-flutter.

androidshivam avatar androidshivam commented on June 11, 2024

Hey, I've added the policies described in the docs for Auth roles and S3
I've started this project 4 years back using CLI but after some time I've to switch to different system i.e not able to setup the cli again

I'm able to get the presigned URL using this
final result = await Amplify.Storage.getUrl(
key: imageKey,
options: const StorageGetUrlOptions(
accessLevel: StorageAccessLevel.private,
pluginOptions: S3GetUrlPluginOptions(
expiresIn: Duration(days: 1),
),
),
).result;

But still can't able to render the image
getting Access denied error

from amplify-flutter.

Jordan-Nelson avatar Jordan-Nelson commented on June 11, 2024

Can you share your IAM policy?

from amplify-flutter.

satsin06 avatar satsin06 commented on June 11, 2024

Facing similar problem:

@Jordan-Nelson Please take a look into it

image

I tried setting up storage using amplify CLI and afterward I tried once using the one which I created manually, I don't want my users to go for authentication while uploading a photo

from amplify-flutter.

satsin06 avatar satsin06 commented on June 11, 2024

@Jordan-Nelson What should be the setting to confirm that it's a public directory?

from amplify-flutter.

Jordan-Nelson avatar Jordan-Nelson commented on June 11, 2024

@satsin06 the path should start with "public/". For example, StoragePath.fromString("public/file.txt")

from amplify-flutter.

satsin06 avatar satsin06 commented on June 11, 2024

@Jordan-Nelson still got same error:

image

from amplify-flutter.

satsin06 avatar satsin06 commented on June 11, 2024

@Jordan-Nelson Is there any example repository, which I can refer to?

from amplify-flutter.

Jordan-Nelson avatar Jordan-Nelson commented on June 11, 2024

@satsin06 - The path cannot be "public/" It should be a file inside the public directory. For example - "public/file.txt". There is a sample project here - https://github.com/aws-amplify/amplify-flutter/blob/main/packages/storage/amplify_storage_s3/example/lib/main.dart

You can also refer to the documentation for Gen 2 Storage which has example of uploading files to the public directory - https://docs.amplify.aws/flutter/build-a-backend/storage/upload-files/

from amplify-flutter.

Jordan-Nelson avatar Jordan-Nelson commented on June 11, 2024

@androidshivam - If you are still facing this issue please share some info about your IAM policy. Thanks.

from amplify-flutter.

satsin06 avatar satsin06 commented on June 11, 2024

@Jordan-Nelson Thanks for help

from amplify-flutter.

androidshivam avatar androidshivam commented on June 11, 2024

Hey @Jordan-Nelson , thanks for help.

from amplify-flutter.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.