简体   繁体   中英

Amazon S3 iOS SDK Photo Upload Error SOMETIMES - SignatureDoesNotMatch

So my iPhone app successfully uploads photos to Amazon S3. I used the same code as the S3Uploader example project with the latest (ver 1.6.0) Amazon AWS SDK for iOS. The problem is intermittently I'll get the SignatureDoesNotMatch error (The request signature we calculated does not match the signature you provided. Check your key and signing method.). There's no pattern to it. Currently my app is working around this error by doing a certain amount of retries on the delegate call didFailWithError:.

So far with my tests, there are enough retries so the user will not notice the error, but it is quite frustrating to know that I am getting a signature key error when my signature is clearly correct since it works at times. I am not sure if it is a url encoding error (my signature key has a + sign in it), but since I'm using the iOS SDK I don't see how the PUT url's are handled.

Also, I verified that my bucket name is all lower case, and my filenames are just numbers and a few alphabet letters. I also tried different regions and they all have the same result. In short it can take anywhere from 0 retries to 5 retries for to get a successful PUT without the SignatureDoesNotMatch error. Has anyone had a similar issue? Any help would be greatly appreciated. Thanks for reading.

You may need to massage the signature after you generate it, because valid base64 is not always valid in a query string. I must have run into the same problem problem once upon a time because I found the following comments in some code I wrote:

# the "+" is not url-safe, as it gets converted to a space somewhere along the line

# '+' => '%2B'

# while we're at it, we'll go ahead and convert the other non-safe-ish 
# characters even though the links seem to work without this step

# '/' => '%2F'
# '=' => '%3D'

My code does string search and replace for those 3 characters, changing them to their url-encoded equivalents before returning the query string to the caller. I used the search/replace tactic because the environment I was working in I didn't have a proper url-encoding library available. Since these are the only 3 base64 characters my code could generate that were not obviously url-safe, I apparently went ahead and handled all three possibilities.

OK. So after spending the last couple days trying new buckets...trying all different NSString encoding/UIImage to NSData statements...switching from embedded to TVM...hopping back and forth from my project to the TVM demo...and reading pages and pages of debugging output...I found out it has nothing to do with any of those! :P

Once I realized I had inadvertently copied the AWS frameworks into my project folder, I removed them and re-added them without the copy box checked (referencing to my SDK's folder). Boom - no more signature errors.

The AWS SDK apparently doesn't like have multiple instances of its frameworks on one system. Hope this helps others! :)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM