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

Spring Webclient : illegalargumentexception not enough variables to expand 'comment_count'

I am using spring webclient to make a Facebook graph api request with url containing {comment_count} But, getting this exception java.lang.IllegalArgumentException: Not enough variable values available to expand reactive spring Code Snippet : import org.springframework.stereotype.Component; import org.springframework.web.reactive.function.client.WebClient; import reactor.core.publisher.Mono; @Component…

VIEW QUESTION
Back To Top
Search