We Want to Hear From You! What Do You Want to See on the Community? Tell us here!
Forum Discussion
Vegepilot
9 years agoExplorer | Level 3
Interpreting iOS upload example
New to iOS development (this will become obvious shortly).
Trying to follow these instructions for making an upload style API request:
let fileData = "testing data example".data(using: String.Encoding.utf8, allowLossyConversion: false)! let request = client.files.upload(path: "/test/path/in/Dropbox/account", input: TestData.fileData)
I've managed to upload a sample text file by replacing 'TestData.fileData' with just 'fileData' but the file ends up being called 'account' with no extension. What was 'TestData' supposed to represent?
Also, how do I upload other types of files (mp3, jpeg, etc.) string.encoding.utf8 is clearly not the answer.
Many thanks for helping out the newbie ;-)
2 Replies
- Greg-DB9 years ago
Dropbox Community Moderator
Apologies, TestData.fileData should indeed just be fileData (per the first line in the example).
Also, the path parameter should be the full path in the Dropbox account where you want to upload the file, including the desired file extension.
So, for example, instead of "/test/path/in/Dropbox/account", if you wanted to upload a file named "Resume.docx" into a folder named "Documents", the path should be "/Documents/Resume.docx".
Uploading files works the same regardless of file type. The example happens to use a string converted to a Data object for simplicity, but you can supply the data using a Data, URL, or InputStream object.
For instance, here's a more advanced example for uploading large files that uploads the file content by reading Data objects from an NSFileHandle:
- Vegepilot9 years agoExplorer | Level 3
Thanks, that makes more sense now. As for the other files, I'm figuring out URL's so that should work fine.
About Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.6,037 PostsLatest Activity: 4 hours ago
The Dropbox Community team is active from Monday to Friday. We try to respond to you as soon as we can, usually within 2 hours.
If you need more help you can view your support options (expected response time for an email or ticket is 24 hours), or contact us on X or Facebook.
For more info on available support options for your Dropbox plan, see this article.
If you found the answer to your question in this Community thread, please 'like' the post to say thanks and to let us know it was useful!