skip to Main Content

Android Studio – AWS Download function issue with file path

I have implemented a function to download aws s3 files using the following code: public void credentialsProvider() { CognitoCachingCredentialsProvider credentialsProvider = new CognitoCachingCredentialsProvider( getApplicationContext(), "us-east-2:xxxxxx-xxxxx-xxxxx-xxxx-xxxxxxx", Regions.US_EAST_2 ); setAmazonS3Client(credentialsProvider); System.out.println("setAmazonS3Client done"); } public void setAmazonS3Client( CognitoCachingCredentialsProvider credentialsProvider) { s3 = new…

VIEW QUESTION

Browser Cache Private S3 Resources – Nginx

Stack is: Angular Laravel S3 nginx I'm using S3 to store confidential resources of my users. Bucket access is set to private which means I can access files either by creating temporary (signed, dynamic) links or by using Storage::disk('s3')->get('path/to/resource') method…

VIEW QUESTION
Back To Top
Search