We are aware of the issue with the badge emails resending to everyone, we apologise for the inconvenience - learn more here.
Forum Discussion
UWRL
9 years agoExplorer | Level 4
Problem with using Generated access token to test using SwiftyDropbox
I have followed the instructions on https://github.com/dropbox/SwiftyDropbox in an attempt to test the V2 API with my Swift desktop macOS App. The only difference is that I am using the Swift_2_3 br...
- 9 years ago
The Swift 3 branch has the DropboxClient constructor just taking the access token as a string now, but the Swift 2.3 branch still requires a DropboxAccessToken object there. You can construct it like this:
DropboxClient.init(accessToken: DropboxAccessToken(accessToken:"ACCESS_TOKEN_HERE", uid:"USER_ID_HERE"))
- 9 years ago
Just use client instead of Dropbox.authorizedClient:
client.sharing.createSharedLinkWithSettings(...)
Greg-DB
9 years agoDropbox Staff
The Swift 3 branch has the DropboxClient constructor just taking the access token as a string now, but the Swift 2.3 branch still requires a DropboxAccessToken object there. You can construct it like this:
DropboxClient.init(accessToken: DropboxAccessToken(accessToken:"ACCESS_TOKEN_HERE", uid:"USER_ID_HERE"))
- UWRL9 years agoExplorer | Level 4
Thanks for that help. That pushed me along a little further. I'm trying to retrieve a public shared link for a folder. This is what I have so far:
var client = DropboxClient.init(accessToken: DropboxAccessToken(accessToken:"ACESS_TOKEN", uid:"UID_NUMBER")) Dropbox.authorizedClient?.sharing.createSharedLinkWithSettings(path: dropboxItemName).response({ response, error in if let link = response { print("link.url: " + link.url) } else { print("error: ") print(error!) } })
Unfortunately I'm not getting anything from either "print" statement in the "if" statement in the Dropbox.authorizedClient statement. Any suggestions? Am I missing something here?
- Steve M.9 years agoDropbox Staff
Just use client instead of Dropbox.authorizedClient:
client.sharing.createSharedLinkWithSettings(...)
About Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.
5,876 PostsLatest Activity: 7 hours agoIf 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!