AWS S3 GetObjectAsync Hangs/Times Out
问题 Note: Answering my own question to help others in the future. I'm following the official documentation to get a text file from an S3 bucket and it hangs: static async Task ReadObjectDataAsync() { string responseBody = ""; try { GetObjectRequest request = new GetObjectRequest { BucketName = bucketName, Key = keyName }; //THIS NEXT LINE HANGS!!!! using (GetObjectResponse response = await client.GetObjectAsync(request)) using (Stream responseStream = response.ResponseStream) using (StreamReader