Comments
-
I see Здравко already helpfully offered guidance on this, but for reference you can find more information about how this works on Dropbox at the following resources: * https://developers.dropbox.com/oauth-guide * https://www.dropbox.com/developers/documentation/http/documentation#authorization *…
-
Thanks for the feedback! I'll pass this along as a feature request, but I can't promise if or when that might be implemented.
-
New Dropbox access tokens are short-lived and expire after a short period of time, but refresh tokens do not expire and can be stored and re-used repeatedly. Once you have a refresh token for an account, you do not need to do the https://www.dropbox.com/oauth2/authorize... step for that account again; you can instead…
-
The Dropbox API can be used to upload to a shared folder in a connected account. For instance, an app can call /2/files/upload with a "path" parameter containing a path inside a shared folder. Note though that you'd need to use an app with the "full Dropbox" access type, not "app folder", to be able to access shared…
-
The team is reporting that this should be working again now. Please try again and let us know if you're still seeing any issues.
-
Thanks for the note! I'm raising this with the team to check on this.
-
For the API /2/files/move_batch/check_v2 issue, please share a sample async job ID so we can check on that. For the issue you showed on dropbox.com, please contact support to reach the relevant department. I can only help with use of the Dropbox API, not the web site.
-
I'm not sure I understand what you mean when you say "it give status in progress all the time". The /2/sharing/create_shared_link endpoint doesn't have a return type or error like that. Did you mean to refer to a different endpoint? Please do share a sample of whatever other issues you're seeing so we can be sure to check…
-
Please share a few samples for that (preferably as text). Thanks in advance! By the way, /2/sharing/create_shared_link is deprecated in favor of /2/sharing/create_shared_link_with_settings, so please switch to /2/sharing/create_shared_link_with_settings when you can.
-
I don't have an ETA on this right now, but I'll follow up here once I have any updates for you.
-
Thanks for the sample. I'll ask the team to check on that.
-
I can't provide help for the web site or support page, but if nothing seems to apply directly please feel free to use any option or contact method there and just explain in your message. The support agents can redirect the ticket as needed.
-
If you're still seeing issues, please share a few sample requests/responses showing the failures for each endpoint that's failing for you so we can check on that. Please include headers, but redact any app secret/access token/refresh token. Thanks!
-
It sounds like you may be seeing some lingering issues with your account after the earlier disruption. Since this happens both via the web site and API, please contact support so they can check on your account for you.
-
This dropins.js disruption should be fully resolved now. Please let us know if you're still seeing any issues with that. Thanks!
-
The team is reporting that this is related to that disruption, and is working to restore service.
-
Service is being restored so you should start seeing some success, but some issues may still linger while we get back to normal availability.
-
Thanks for the report! We're looking into that and I'll follow up here once I have confirmation or an update.
-
Note that the requests are performed asynchronously, and from the sessionDeinitialized error it sounds like your client object was released (and accordingly the underlying session was deinitialized) before the request could be completed; to fix that you'd need to update your code to keep that client object around while the…
-
@"developerscorpio" Здравко is correct; for more information on accessing the contents of the team space, refer to the Team Files Guide.
-
@"Zard" As Здравко noted, you can find an example of getting the information from the URL in that example in the SDK. The "token" flow is no longer recommended in general though, in favor of the "code" flow, using PKCE for client-side apps, such as shown in this PKCE example in the Dropbox JavaScript SDK. You can find more…
-
@"AngelaM1" There's currently a Dropbox server disruption causing this to fail to load. The team is working on resolving this.
-
Thanks for the note! I'll pass this along to the team.
-
The team is currently working on resolving the disruption.
-
We're looking into this issue and I'll follow up here once I have news. Thanks!
-
For /2/sharing/list_folders[/continue], the 'cursor' in the response is an optional value and is only returned "if there are additional shared folders that have not been returned yet", so it will not be set if there are no more entries to return. Unfortunately, it's not suitable for monitoring for such changes over time…
-
@"white1" Thanks for the report. As Rich and Здравко said, this error would occur because the user's account is currently banned from creating links, and note that that applies to the user account for the access token being used, which is not necessarily your own account. And it appears the Dropbox Python SDK is not…
-
@"developerscorpio" From your description, it sounds like you have a user-linked access token, but are trying to access a team-linked endpoint. Team-linked endpoints require a team-linked access token, in order to operate on the team itself. To get a team-linked access token, you would need to connect the app with the…
-
@"CASU" As Здравко said, please share the information about what isn't working as expected for you. For instance, include relevant error messages, etc. Be sure to always check the response body for your API calls, as it may contain an error message. Also, note that using "dl.dropboxusercontent.com" in shared links is not…
-
I can't offer more information or a guarantee beyond what's included in the documentation for the endpoint. Please refer to that for information on what information/behavior to rely on for the endpoint.