Comments
-
In the latest version of the SDK, the equivalent code would be: DBTransportDefaultConfig *transportClient = [[DBTransportDefaultConfig alloc] initWithAppKey:@"APP_KEY" appSecret:@"APP_SECRET"]; [DBClientsManager setupWithTransportConfig:transportClient]; [[DBClientsManager.authorizedClient.authRoutes…
-
Thanks for the report Jan. It looks like the assembly reference in your project settings is inconsistent with the actual binary. Please try uninstalling and reinstalling the package and let us know if that doesn't help.
-
This error message indicates that the access token you're using (client_app_key and client_app_secret in your code) doesn't correspond to the app key and secret (my_app_key and my_app_secret in your code) that you're using. When making this case, these pairs needs to match. That is, the access token you're trying to…
-
There isn't a way to increase the speed using the API. Your connection speed to Dropbox depends on the routing you get between your ISP and our servers, and may be slower than your ISP's rated speeds. Sometimes resetting or retrying your connection gets you a different route and better speeds, but that is outside of our…
-
Dropbox unfortunately doesn't currently offer a way to pre-select or remember the last folder like this, but I'll be sure to pass this along as a feature request.
-
Can you share the code you're using and the full error message you get? Thanks in advance!
-
Thanks for the post. Unfortunately, the Dropbox Chooser doesn't support running from a Chrome extension, but I'll be sure to pass this along as a feature request. Apologies I don't have better news!
-
To request an app name change while in production, please open an API ticket here from the account that owns the app: https://www.dropbox.com/developers/contact Make sure you include both the current name of the app, and the desired new name.
-
You can use whatever chunk size you want, and the chunk size itself shouldn't cause an incorrect offset error. There isn't an optimal chunk size in general, as there are various different factors, often app-specific, or even user-specific, that will come in to play to affect this. That being the case, you may want to try a…
-
Closing as duplicate of: https://www.dropboxforum.com/t5/Dropbox-Business-admins/DATA-DROPBOX-IN-WEBSITE/m-p/211625#M857
-
Grazie per il post! Non abbiamo la documentazione in italiano, purtroppo. Manderò questo insieme come una richiesta di funzionalità. Noi non facciamo uno SDK ufficiale di PHP per Dropbox API v2, ma, è possibile utilizzare i punti finali HTTPS stessi: https://www.dropbox.com/developers/documentation/http/documentation o di…
-
Based on the stack trace, this error is ocuring in the "new FileOutputStream" line, and not in Dropbox code, so I'm afraid I can't offer much insight. That said, the "Zugriff verweigert" error seems to translate to "Access denied", so it may be a permissions issue. You'll need to investigate why you don't have permission…
-
After a user unlinks your app or deletes the app folder, any further API calls will fail with a 401. In the API v2 Java SDK, for example, the API call method will raise an InvalidAccessTokenException.
-
It sounds like you're referring to the getThumbnail[Stream] methods in the Android Core SDK. To get thumbnails in the API v2 Java SDK, you can use getThumbnail or getThumbnailBuilder.
-
That's the correct documentation for this error. It generally shouldn't happen often, but if it does, it may indicate an issue with your upload session logic that you should debug. When you do get it though, you can have your app continue with the upload session, but pick it up from the specified correct offset. For…
-
Hi Ashley, for the special OAuth routes like that, the /1/ isn't actually relevant (that is, the functionality is specific to the version of OAuth, not the version of the API). So, you can continue using that, and I'll ask the team to add a non-API-versioned equivalent to make that clearer.
-
Thanks for clarifying, that's very helpful!
-
Thanks for reporting this! We did have a service disruption earlier today, but it should be resolved now. Please let us know if you're still seeing any issues.
-
By the way, I'm not sure I understand this suggestion: "things like SearchMode.FilenameAndContent.Instance should be enums that are "or"able" Can you elaborate? Thanks in advance!
-
You should use the API v2 Java SDK for Android. There's an Android example app that uses that for reference.
-
The authenticationSuccessful is only meant for use during the actual app authorization flow, when the user chooses whether or not to authorize the app. That being the case, it will only return true during that first session. If you just want to know if you have an access token, you should use isLinked. By the way, I…
-
[Cross-linking for reference: https://github.com/dropbox/dropbox-sdk-obj-c/issues/109 ]
-
Yes, right now unfortunately there isn't a generalizable way to do this, e.g., with a protocol. You'd have to store each necessary type and keep track of them. I've filed this with the team as a feature request for a good way to do this though. Anyway, the code I shared did work for me. Based on the error you're getting,…
-
I'm not sure if I follow your question, but if you're looking for alternate versions of the Dropbox .NET methods, they are also available. E.g., for Download: https://dropbox.github.io/dropbox-sdk-dotnet/html/M_Dropbox_Api_Files_Routes_FilesUserRoutes_BeginDownload_1.htm…
-
We've had our engineers working on this and the good news is the problem has been fixed. Please try again and you should find that this functionality works correctly. Apologies for any inconvenience this caused.
-
The Dropbox API doesn't currently offer a way to create Paper documents programmatically, but I'll be sure to pass this along as a feature request.
-
Thanks for following up. I'm glad to hear you got this sorted out already. By the way, on the Dropbox side of things, a trailing slash isn't strictly required on a redirect URI, but it is required that the pre-registered redirect URI exactly match the value supplied in the redirect_uri parameter on /authorize. That would…
-
Thanks for the reports! We're looking into it. I'll follow up here once I have an update.
-
Can you share the full URL for the 400 error (and any other error/output you're getting)? Thanks in advance!
-
The error message seems to be indicating that your app isn't allow to access the local path (not the remote Dropbox path). That being the case, this seems to be more of an Android issue, so I'm afraid I can't offer much insight. You'll need to look in to why your app can't access that local file path, or if that's not the…