Stephen C.14 Dropboxer

Comments

  • @Brendan D: @Robert S. is correct. The Sync API will stop working on June 28, 2017. @Robert S.: As far as the Objective-C SDK, it is currently in beta for the next few days, and will be released for production at the end of this week.
  • Currently, Dropbox does not limit the size of the POST body in Webhooks, so unfortunately, you won't be able to use body size as a means to validate the request. As far as your second question, beyond signature verification, I can't think of any additional means of verifying that the request is valid and from Dropbox.
  • @Hananel C.: Could you post the code that you used to make this request?
  • Thanks for reaching out, gistart. Unfortunately, there is currently no way to list all applications that are linked to a particular team. Though we have no plans to add this feature as of now, we will file this as a feature request for the future. 
  • @Robert S.: The SDK is available via CocoaPods, Carthage and as a separate framework file, so you have a variety of options for integrating with your project.
  • @Mike K.: The API v2 Obj-C SDK is currently in beta (https://github.com/dropbox/dropbox-sdk-obj-c) pending a few additions, and will be released for production at the end of this week. Thanks for your patience here.
  • @Richard P.: Thanks for your reply and its helpful contextualization. @John G.: Richard is correct in the sense that it's hard to avoid using some of these third-party tools entirely. If you want the least invasive way of getting a framework file into your project, then you probably want to use Carthage. Please follow the…
  • @Joe Z.: Thanks for reaching out. Given that the SDK defers most of its network functionality to Alamofire, I'm pretty confident that updating to the latest version of SwiftyDropbox (and by extension, Alamofire), should resolve any IPv6 compatibility issues, if they were in fact due to the SDK. Let us know if you run into…
  • Hi Sunil, we looked into this issue on our end and were not able to reproduce it, even in the case of large file downloads. SwiftyDropbox does not handle any memory management -- memory is managed by a third-party networking library, AlamoFire. You might also want to double check your memory usage levels. Xcode's simulator…
  • Hi Andrii, you might try simply hitting the https://www.dropbox.com/1/oauth2/authorize endpoint without without passing the 'redirect_uri' web parameter. The desired url might look something like this: https://www.dropbox.com/1/oauth2/authorize?client_id=<CLIENT APP KEY>&response_type=code This will return a response with…
  • Here is a brief sample with the functionality that you want: import sys import dropbox print 'Running' dbx = dropbox.Dropbox('<GENERATED ACCESS TOKEN FROM MY APPS PAGE>') curr_account = dbx.users_get_current_account() shared_folder_name = '<SHARED FOLDER NAME>' # Create a shared folder launch = dbx.sharing_share_folder('/'…
  • @Mike K. Ashok M.: The API v2 Obj-C SDK is currently in beta (https://github.com/dropbox/dropbox-sdk-obj-c) pending a few additions, and will be released for production at the end of this week. Thanks for your patience here. vincy w.: In theory, yes it is, but it would preferable to use our new Obj-C SDK, which will be…