You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 25, 2019. It is now read-only.
We're trying to use the iOS FilePicker SDK in a test app I'm putting together and I keep getting a 403 error when selecting a document.
The app is currently setup to do the following:
Present an FPPickerController to the user
User selects a source, then selects a file
The selected file should be uploaded to our S3 bucket, then the S3 link should be returned to the FPPickerController's fpdelegate in an FPMediaInfo object
The selected file is successfully being uploaded to S3, but we're having two problems:
If I specify a storePath (a directory inside of our default S3 bucket), it is being ignored and the file is instead uploaded to the root of the default S3 bucket. It looks like other users may be having this problem as mentioned in Doesn't save files to mentioned buckets and path #98.
Once the file is successfully uploaded to our S3 bucket, an alert view appears with the text: "Request failed: forbidden (403)". This triggers the delegate method - (void)fpPickerControllerDidCancel:
both should work just fine, so you can use "basic" one to build your s3 link in - (void)fpPickerController: (FPPickerController *)pickerController didFinishPickingMediaWithInfo: (FPMediaInfo *)info
We're trying to use the iOS FilePicker SDK in a test app I'm putting together and I keep getting a 403 error when selecting a document.
The app is currently setup to do the following:
The selected file is successfully being uploaded to S3, but we're having two problems:
- (void)fpPickerControllerDidCancel:
Here is my app delegate code:
And my ViewController code:
and the Podfile:
Any help on this would be greatly appreciated. At this point, the two things I need are:
The text was updated successfully, but these errors were encountered: