Not getting list of Objects from a S3 Bucket #2575
-
Hey there, |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
@AnuragDubeyGame Thanks for posting question. ListObjects API call from AWS SDK for .NET should work in Unity without any issues. Could you check if the IAM credentials used to access S3 objects has proper permissions to list objects in an S3 bucket? Also share the following:
Amazon.AWSConfigs.LoggingConfig.LogResponses = Amazon.ResponseLoggingOption.Always;
Amazon.AWSConfigs.LoggingConfig.LogTo = Amazon.LoggingOptions.SystemDiagnostics;
Amazon.AWSConfigs.AddTraceListener("Amazon", new System.Diagnostics.ConsoleTraceListener()); Verbose logs would enable you to examine response or errors (if any) from the service.
Thanks, |
Beta Was this translation helpful? Give feedback.
-
Hello! Reopening this discussion to make it searchable. |
Beta Was this translation helpful? Give feedback.
@AnuragDubeyGame Thanks for posting question. ListObjects API call from AWS SDK for .NET should work in Unity without any issues. Could you check if the IAM credentials used to access S3 objects has proper permissions to list objects in an S3 bucket?
Also share the following:
Verbose logs would enab…