Comments
-
Thanks! We'll look into it.
-
@"ismdcf" I see you also posted a new thread, so I'll follow up there: https://www.dropboxforum.com/t5/API-Support-Feedback/Oauth-Sign-In-Buttons-Disabled-on-All-Versions-of-Android/m-p/274367#M16336
-
@"ismdcf" Thanks for following up. I'm glad to hear this is working again for you. For reference though, per the official documentation, you should process this in the system browser, and not a web view. In addition to supporting the Google Sign In flow per Google's requirements in the future, that will offer the best…
-
Thanks for the report! I added a comment there. For reference, per the official documentation, you should process this in the system browser, and not a web view. In addition to supporting the Google Sign In flow per Google's requirements in the future, that will offer the best compatibility with the Dropbox site in…
-
I just tested this in IE 11, and it is working for me. Are you still seeing this issue?
-
@"pcuycs" The API v2 .NET SDK is supposed to work with .NET Core 2.0, but there may be an issue loading it in some environments, as noted earlier in this thread. I don't have an official update for that, but one thing you can try is manually adding Newtonsoft.Json. If that doesn't help, please share the full error message…
-
If the Dropbox API call is failing, you should get a more specific error from the API. It sounds like you're only retrieving a generic error message though. Please inspect the exception, e.g., using the debugger, to get more information.
-
That appears to be the correct method definition for DropboxOAuth2Helper.ProcessCodeFlowAsync. Are you sure you have the latest version of the Dropbox API v2 .NET SDK successfully installed though? You mentioned a version number "v4.0.30319" but the latest version is "v4.8.0". (I think "v4.0.30319" is the version of .NET…
-
The expected behavior is for the Chooser to prompt the user to sign in. The Chooser is a way for you to easily receive files from your end user's Dropbox accounts (not your own account), so it does prompt the user to sign in if they are not already signed in.
-
The /oauth2/token endpoint requires a POST, not a GET, so you're accordingly receiving a 405 error. Switch to using POST instead. You can find more information in the documentation: https://www.dropbox.com/developers/documentation/http/documentation#oauth2-token It looks like you're also missing the app key and secret, and…
-
Thanks! I can't make any promises, but I'm sending this request along to the team.
-
I don't see anything obviously wrong. Please step through this code with a debugger and figure out which exact line doesn’t work as expected and share the details.
-
[Cross-linking for reference: https://stackoverflow.com/questions/50039275/get-scrip-errorrecaptcha-if-login-dropbox-failed-first-time ] The Dropbox web site does support IE 11, so if it works there and you've already set the webview to use IE 11, it sounds like there's still some compatibility issue with the webview in…
-
To get the relative paths for items in the team space, you should use the "Dropbox-API-Path-Root" to set the root for the API call to that team space. You can find more information in the namespace guide: https://www.dropbox.com/developers/reference/namespace-guide For example, that would look like this: curl -X POST…
-
Using upload sessions and batch committing as outlined in the data ingress guide you linked to is the best way to do this. We don't have a sample of using that in .NET SDK, but there is a basic example of using upload sessions (without the batch commit) here: https://github.com/dropbox/dropbox-sdk-dotnet/issues/28 That…
-
It's not possible to get a copy reference for a shared link for a file from an account you don't have access to. However, if you have access to the receiving account, and the link is for a file, you can use /2/files/save_url: https://www.dropbox.com/developers/documentation/http/documentation#files-save_url That will…
-
If you need to see what the actual HTTP requests would look like, I recommend running the curl examples included in the documentation for each relevant endpoint, e.g.,: * https://www.dropbox.com/developers/documentation/http/documentation#oauth2-token *…
-
Thanks for the additional information. Unfortunately since that error isn't referencing Dropbox, I'm afraid I can't be of much help with that specifically. I recommend working through the list of potential causes it cites. Anyway, thanks for the feedback. I understand how the Android example could certainly use more…
-
You can find the documentation for the ProcessCodeFlowAsync method in the Dropbox API v2 .NET SDK here. There's an example of using it in the SimpleBlogDemo sample included with the SDK here. Hope this helps!
-
It sounds like you'd want to use: 1. /2/files/upload 2. /2/sharing/share_folder and /2/sharing/add_folder_member 3. /2/sharing/remove_folder_member (and/or optionally /2/sharing/unshare_folder) Those are links to the documentation for the HTTPS endpoints themselves, but we recommend using one of the official SDKs if…
-
@"Zoey03" To clarify, did you solve this, or do you still need help? You marked your last reply as a solution. Anyway, I recommend just letting Xcode autocomplete the method call, as that will give you the definition for the version of the SDK you have installed. It sounds like you're referring to this sample, which is now…
-
From the sample you provided, I see that you're trying to call /2/auth/token/from_oauth1, but are just using the oauth1_token and oauth1_token_secret values from the documentation itself. This endpoint is only meant for use if you already have pre-existing OAuth 1 access tokens, which you would plug in there instead of the…
-
If you're just trying to run the Android example app as is, you don't need to run gradlew.bat. You can just switch the Dropbox dependency to "compile 'com.dropbox.core:dropbox-core-sdk:3.0.6'" as you mentioned. (You should use that instead of the existing "compile group: 'com.dropbox.core', name: 'dropbox-core-sdk',…
-
@"emna15" For using the Dropbox API in Android, you should use the Dropbox API v2 Java SDK: https://github.com/dropbox/dropbox-sdk-java There's an example of uploading files here:…
-
For the error you're getting, it looks like you aren't passing in an access token. (I.e., "Bearer" should be followed by the access token.) You'll need to see why that is. It appears you're trying to retrieve it via `session('access_token')`, which apparently isn't working. Anyway, yes, you can programmatically get an…
-
No, use of the Dropbox Saver is free. When a user uses the Dropbox Saver, it does save the file(s) into whatever account they are signed in to in their browser, not your developer account.
-
No, unfortunately there isn't an update on that.
-
I don't have any news on this.
-
The Dropbox API now offers the ability to add arbitrary key/value data to Dropbox files via "file properties": https://www.dropbox.com/developers/documentation/http/documentation#file_properties If you're using an official SDK, there will also be corresponding methods for these endpoints.
-
The Dropbox API now offers the ability to add arbitrary key/value data to Dropbox files via "file properties": https://www.dropbox.com/developers/documentation/http/documentation#file_properties If you're using an official SDK, there will also be corresponding methods for these endpoints.