Comments
-
@"credentially-dev-team" Both samples you shared here show 'size=0', meaning that both files were uploaded with empty contents. Please check your upload code to make sure you're uploading the non-empty contents that you expect for the files.
-
@"quandt" Thanks for the feedback! I'll pass this along to the team.
-
@"igor-plotnikov" Can you clarify what you mean when you say the page won't open? Are you getting some error? That link is working for me. In any case, for the official Dropbox Python SDK, you can find examples of getting and using a refresh token at the following links: *…
-
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…
-
Thanks for following up. I'm glad to hear you got this sorted out. Just for reference, to answer your questions: The SDK still doesn't offer an option to force the browser flow, but it sounds like that's no longer needed in your case anyway since you got this working. While the app name you register on Dropbox should match…
-
@"boeboe" I don't have an update on this feature request, but thanks for the feedback!
-
@"justam" Yes, we only support embedding Dropbox shared links via the Embedder, not using an iframe directly. Please follow the instructions here for using the Embedder.
-
@"Rushik Binary" You can also find more information on this at the following locations: * https://developers.dropbox.com/oauth-guide * https://www.dropbox.com/developers/documentation/http/documentation#authorization * https://dropbox.tech/developers/using-oauth-2-0-with-offline-access
-
@"ravikiranreddy" You can also find more information on this at the following locations: * https://developers.dropbox.com/oauth-guide * https://www.dropbox.com/developers/documentation/http/documentation#authorization * https://dropbox.tech/developers/using-oauth-2-0-with-offline-access
-
Thanks! I'm trying this out now, but I can't seem to reproduce that error. From what I can tell though, it's actually coming from iOS itself and not directly from the Dropbox iOS app. Given that you mentioned it occurs when the Dropbox app would be sending you back to your app, it sounds like it would be related to the URL…
-
Whether using "offline" access or not, "authorization codes" can each only be used once, and are only valid for a short period of time. Apps should use authorization codes once immediately upon receiving them. "Refresh tokens" do not expire by default, and can be stored and re-used repeatedly for further API calls without…
-
@"MosheS" No, I don't have an update on this.
-
[Cross-linking for reference: https://stackoverflow.com/questions/76847429/dropbox-ios-sdk-obj-c-authorisation-with-dropbox-app-installed-produces-error ] First, for reference, can you share the version number of the Dropbox SDK that got installed by Cocoapods, and also share a screenshot of the screen with the error…
-
@"Thang2000" I'll pass this along as a feature request for support for setting the write mode when moving/copying files, but I can't promise if or when that might be implemented. Also, you can find an example of catching an API error in the Python SDK here.
-
@"STEALTHbits" Yes, the team worked on tracking this down and resolving it.
-
The https://www.dropbox.com/1/oauth2/display_token page was only built for the response_type=token flow, not the response_type=code flow. For example, https://www.dropbox.com/1/oauth2/display_token?code=thiswillnotshow will not show the value, but https://www.dropbox.com/1/oauth2/display_token#access_token=thiswillshow…
-
I don't believe we currently have any documented guarantee as to whether or not the Python SDK itself is thread-safe, so I can't make assurances on that, but I'll pass this along as a request to the team for that. I can't promise if or when that might be done though. For reference though, the Dropbox Python SDK uses the…
-
Unfortunately it's not possible to add additional owners/developers to an app, such as to allow other accounts to view/configure an app's settings on the App Console, but I'll be sure to pass this along as a feature request. I can't promise if or when that might be implemented though.
-
Thanks! Are you using an API app registered with the "app folder" access type? There's currently a bug that results in this error when using this method with an access token for an app folder app. That's open with engineering, but I don't have a timeline on a fix.
-
When using the Dropbox OAuth app authorization flow, the resulting access token (and refresh token, if requested) will be connected to whichever account was signed in and authorized the app during the app authorization flow. Any API calls made with that access token will be made for that particular account. So, when you…
-
I see you're using the Dropbox JavaScript SDK, that should handle any encoding for you automatically. You should just pass in the correct path value as plain unencoded text. Don't apply any encoding to that value yourself. I just tried your code out, plugging in my own sample path value and access token, and it worked…
-
You can use the Dropbox API to access the full contents of a connected account even if the app is still in development status. The production versus development status only controls how many different accounts can be connected to your app. If you'll never need to have more than 50 accounts connected, you don't need…
-
@"Duycode" I'll be happy to help with any issues you're having with the Dropbox API, but to make sure we can check on the specific issue you're running in to, please share: * 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…
-
Thanks for the additional information. It looks like your posts were originally caught by the spam filter, but have since been recovered. Anyway, from the response headers, I see that there should be a response body, since there's a response header 'Content-Length: 97'. Using the Dropbox JavaScript SDK, you can get the…
-
@"Thang2000" The public Dropbox API doesn't offer this functionality, but from your description it sounds like the Dropbox automation feature may be helpful for you. You would set that up manually once per folder to have it then run automatically, without using the Dropbox API yourself.
-
If you're getting a 401 error after a few hours, that's likely because you're using an expired short-lived access token. The response body should contain 'expired_access_token' in that case. For reference, Dropbox is no longer offering the option for creating new long-lived access tokens. Dropbox is now issuing short-lived…
-
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) * the full text of any error or…
-
@"VigoBabb" For reference, the Dropbox API itself does not offer a way to pre-fill that information for file requests, but I'll pass this along as a feature request. I can't promise if or when that might be implemented though.
-
@"Thang2000" No, I don't have an update on this feature request.
-
@"foggy748" For reference, you can find documentation on how to encode header values here.