Greg-DB Dropbox Community Moderator

Comments

  • @" Intellicode Mangement Systems" Your support ticket is currently open so it will be reviewed and receive further help soon.
  • @" Intellicode Mangement Systems" This isn't enough information for me to offer guidance on why that may be failing for you. I understand you have a support ticket open with more information though, so we'll review that and follow up with you there soon.
  • @" Intellicode Mangement Systems" Yes, for the official Dropbox API v2 .NET SDK, you can find an example of getting and using a refresh token in the OauthBasic example (non-PKCE, meant for server-side apps) as well as in the OAuthPKCE example (PKCE, meant for client-side apps)
  • @"Itai M." That's correct, if there's already a shared link for the item, you'll get that 'shared_link_already_exists' error. You can catch and handle that exception as needed. You can also use listSharedLinks to check for/list existing shared links.
  • I see your support ticket has received multiple replies with answers to your questions. (Please check your spam folder if you haven't received these.) The support team will continue to provide assistance there.
  • While there may currently be functionality like that, note that it is not officially documented or supported, so I can't recommend relying on that, as it would be subject to change without notice.
  • @" Intellicode Mangement Systems" I see you also have a support ticket regarding this with more details, so please refer to the replies to that for help.
  • @"abiluck" We're now returning "audio/mp4" for .m4b files as well. Hope this helps!
  • @"kevintriplett" This hasn't been added for the legacy Paper API, but Dropbox is switching to storing Paper documents as files in the Dropbox filesystem. You can find more information on that migration here. For files in the Dropbox filesystem, check out the Detecting Changes Guide or /2/files/list_revisions for listing…
  • @"marksmithhfx" Dropbox doesn't offer an option like that, but you can share ideas here.
  • @"phmacena" Здравко is correct; while 'path' is required, it doesn't need to be an absolute path. For reference, in addition to the documentation that Здравко linked to, you can see the full allowed formats for the 'path' parameter under the 'CreateFolderArg' section in the /2/files/create_folder_v2 documentation. For…
  • Based on the error output you shared, it looks like your app isn't setting the access token. That is, the "Authorization" header value should be "Bearer ACCESSTOKEN" (with ACCESSTOKEN being your actual access token), but the app is only sending "Bearer" (without an access token). You'll need to have the app set the access…
  • Dropbox is in the process of switching to only issuing short-lived access tokens (and optional refresh tokens) instead of long-lived access tokens. You can find more information on this migration here. Apps can still get long-term access by requesting "offline" access though, in which case the app receives a "refresh…
  • @"marksmithhfx" That's correct, if you're already signed in, you won't be prompted to do so again. You can require sign in again by setting 'force_reauthentication=true' if necessary. Note that this is disruptive though (as it signs out the current Dropbox web session), so it should only be used for good reason. Also,…
  • After the user authorizes the app, the resulting response URI will contain the information needed for completing the process on the query portion of the URI. You need to pass that response URI into ProcessCodeFlowAsync, as the 'responseUri' parameter, to complete the flow. This error message is indicating that the…
  • Dropbox bietet eine API, die Programmierer/Entwickler unter anderem zum Auflisten, Hochladen, Herunterladen und Teilen von Dateien verwenden können. Hier finden Sie alles, was Sie für den Einstieg in die Dropbox-API benötigen, einschließlich Dokumentation, Tutorials und SDKs: https://www.dropbox.com/developers Vielleicht…
  • @"schrettinger" I understand you're attempting to integrate with the Dropbox API in your Android app. To do so, please make sure you're following the instructions here exactly: https://github.com/dropbox/dropbox-sdk-java/tree/master/examples/DropboxAndroid That will guide you through using the right methods and setting…
  • I'm not aware of any remaining issues with how we're serving these on our side. Can you elaborate on what specifically isn't behaving as expected currently? Thanks in advance!
  • @"Daniel F" The file properties functionality on the Dropbox API is meant as a way for third party apps to set and get custom information for use by the third party app itself, e.g., to show in its own UI. Dropbox doesn't expose this information in the official Dropbox UI, but I'll pass this along as a feature request. I…
  • I'll be happy to help with any issues you're having with the Dropbox API, but I'll need some more information. Please reply with: * the name and version number of the platform and SDK/library you are using, if any * the steps to reproduce the issue, including relevant code snippet(s), but don't include any access or…
  • @"enpapi" The Dropbox API servers currently support TLS 1.2 and will continue to do so after support for TLS 1.0 and 1.1 is disabled. Dropbox doesn't offer a way to simulate the new server configuration, but I'll pass this along as a feature request. I can't promise if or when that might be implemented though.
  • @"Eric Z.6" Thanks, I’ve sent your feedback along to the team.
  • Dropbox is in the process of switching to only issuing short-lived access tokens (and optional refresh tokens) instead of long-lived access tokens. You can find more information on this migration here. Apps can still get long-term access by requesting "offline" access though, in which case the app receives a "refresh…
  • Based on the "Temporary failure in name resolution" error, it appears this is an issue resolving the "content.dropboxapi.com" hostname. That is resolving successfully for me though, so please check on your DNS server to see what may be causing that failure. You may need to contact your network admin for help.
  • @"simatec1976" I just checked on this, and it looks like you already have an open support ticket for that, so they'll follow up with you there soon.
  • If you're getting "Successfully set up client" from that code, that indicates you've processed the app authorization flow and should now have the necessary credentials, so you can use that dropbox.Dropbox object to make calls. That particular example just shows the authorization flow, but you can save that object like…
  • A "The given OAuth 2 access token is malformed" error should indicate that the string you're passing as the Bearer access token in your request, shown as "<API>" in the code you shared, is not a valid Dropbox API access token. Make sure you're passing in the exact access token as you received it from Dropbox, without any…
  • @"simatec1976" That should be processed within a few business days. If you need help with a production request you can always open a ticket via https://www.dropbox.com/developers/contact .
  • @"nitish166" It looks like you are not using the Dropbox API v2 JavaScript SDK. We highly recommend using an official SDK whenever possible, as it will do much of the work for you. For instance, you can find the Dropbox API v2 JavaScript SDK here, and an example of using refresh tokens with the JavaScript SDK here.…
  • @"OperationsDreaming" Здравко is correct. You'll need to implement support for refresh tokens. You can find example code for for the Python SDK here: * https://github.com/dropbox/dropbox-sdk-python/blob/main/example/oauth/commandline-oauth-scopes.py…