Comments
-
I see, thanks. I'm not too familiar with the underlying issue here with regards to why Safari is rejecting or corrupting these requests, but looking at the proposed solution, the Dropbox API certainly doesn't expect any extra parameters or headers. (I'm not sure why this is necessary anyway since this seems like a client…
-
Actually, I think this may be this issue: https://github.com/angular/angular/issues/37133 There's a solution posted there. Can you try that out?
-
Would it be possible to get some sample requests/responses showing the issue so we can try to track this down and investigate on our side? Be sure to redact the access token though of course.
-
Technically you don't need to build from source if you don't need to change the source code for the SDK (which you probably don't have reason to do). Instead, it's much easier to just install a released version. For example, you can replace this line from the Android example build.gradle: implementation group:…
-
@"Kirk Schneider" No, unfortunately I don't have an update on this request.
-
@"kaamoo_api" Based on the error "No address associated with hostname" it sounds like your system wasn't able to look up the Dropbox API hostname, which is 'api.dropboxapi.com'. You have the right hostname, and 'api.dropboxapi.com' is currently resolving properly, so it sounds like there's an issue with your DNS…
-
This issue should be resolved now, so you can enable team scopes. Let us know if you're still seeing any issues. Thanks!
-
This issue should be resolved now, so you can enable team scopes. Let us know if you're still seeing any issues. Thanks!
-
I see, thanks for clarifying. I believe the combined serialization is expected in this case, per the Stone documentation: Union members that are ordinary structs (coord in the example) serialize as the struct with the addition of a .tag key. In this case, the UploadError union member UploadWriteFailed is a struct.
-
Thanks for the note, and apologies for the confusion. You can find information on how errors are structured in the documentation here. In this case, this part is relevant: Endpoint-specific errors (409) The following table describes the top-level JSON object attributes present in the body of 409 responses.…
-
@"Edis" Thanks for the note. We've moved the retirement of the legacy Paper API to Q2 of 2021. We'll update the migration guide again if there are any further changes.
-
This step of the OAuth flow should be accessed on https://api.dropboxapi.com/oauth2/token , not www. This endpoint is working as expected for me, and it sounds like the original poster here found the issue with the request they were sending. @"UKCloud" If you're still having trouble with this endpoint though, please share…
-
This error indicates that there is too much activity occurring on the connected account, and so the request could not be serviced. Your app should wait the number of seconds indicated by the 'retry_after' value (5 seconds, in this case) before trying again. The simultaneous activity could be coming from your app itself, or…
-
Thanks for the report! We'll look into it.
-
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…
-
Based on the description and output here, it sounds like this integration is using the /2/files/get_temporary_link endpoint. The links from this endpoint are supposed to expire, and are only meant for temporary use. If you need non-temporary links, you should use shared links instead, which an app can get via…
-
I can't say for sure exactly what's happening without seeing the actual values, but if the files are in the connected account, it's better to use paths/IDs everywhere, instead of preview/shared links. That's the more direct way of referencing things and may avoid the missing path values you mentioned, depending on the…
-
No, unfortunately the Dropbox API doesn't offer anything like that, but I'll pass this along as a feature request. I can't promise if or when that might be implemented though.
-
There are a few things to note here: * "Network is unreachable" seems to indicate an issue with the network connection, but the connection appears to then actually work anyway. * "unable to get local issuer certificate (20), continuing anyway" seems to indicate that the client wasn't able to get the relevant certificate…
-
Thanks for following up. I wasn't sure if that was the actual payload the app was sending, or if it got mangled when posting to the forum. I'll work on reproducing this with that and ask the team to fix the error handling. I can't promise if/when they might be able to work on that though, so I recommend also updating your…
-
Can you print out the response body for the call made by the PowerShell code? It should contain a more useful error message indicating what the issue is in that case.
-
It sounds like you have the right idea here, but note that the 1-7 numbers in the guide you're referring to are just examples; you shouldn't actually be using those real calls. Using the ID of the "Shared Workspace" as you mentioned (apparently starting with "84..." in your case) as the "root" in the…
-
@"Lodgical" I see you also have a new thread about this, so I'll follow up with you there shortly
-
@"tiamat" I see you already got some help here, but it's worth noting that there can be other causes of failures like this, so if you still need help tracking down what's wrong, feel free to contact us directly with the job ID.
-
Thanks for the report! We're looking into it. I'll follow up here once I have an update on this for you.
-
Thanks for the report! We're looking into it. I'll follow up here once I have an update on this for you.
-
So if I understand correctly, this code is producing multiple copies of files in Dropbox, when you only want it to make one. Looking through the code, there are a few things to note: * You seem to be calling 'authorizeFromController' every time 'recordCountdown' runs. The 'authorizeFromController' method initiates the app…
-
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, * the steps to reproduce the issue, including relevant code snippet(s) * the full text of any error or unexpected…
-
A 500 error like this indicates something failed on the Dropbox API servers when processing the request. Unfortunately there isn't a way to retrieve more information about the failure via the API, but we can look into it for you. To help us do so, can you share more information about how to reproduce this? It appears to be…
-
Yes, depending on the kind of error, the response may be plain text or JSON. You should check the 'Content-Type' response header to check what it is. For example, in this sample you shared it's "text/plain; charset=utf-8". You can find more information on the different kinds of errors the Dropbox API may return in the…