I am creating the Notes Application in Dropbox. The user Notes are storing in the Dropbox but I want to implement the editing function in Dropbox.Is it possible to edit the files in the Dropbox?
[Cross-linking for reference: https://stackoverflow.com/questions/44109508/how-to-edit-the-file-in-swiftydropbox ]
Yes, you can edit files of any type, including text files, by uploading the new file data. You can find an example of making an upload call in the documentation for SwiftyDropbox here:
https://github.com/dropbox/SwiftyDropbox#upload-style-request
I found the answer and thanks for your help
https://stackoverflow.com/q/44109508/7756686
It's possible to import user account profile image using swiftyDropbox
[Cross-linking for reference: https://stackoverflow.com/questions/44109508/how-to-edit-the-file-in-swiftydropbox?noredirect=1#comment75275980_44109508 ]
You can get the profile image via Account.profilePhotoUrl, e.g., as returned by getCurrentAccount.
Here, it's like setting the photo and names.I want to retrieve the user's profile picture.