Comments
-
Thanks for the report! We'll look into it and I'll follow up here with any updates.
-
@"AdnanL" Thanks. That output looks correct and should allow the code to get the "token.result.refresh_token" value. When you say you "did not run the script before I posted this issue", do you mean that when you originally posted this and said you "reached this error that I couldn't solve", that was only a warning you saw…
-
@"Ridvan_" The Dropbox API doesn't offer the ability to get the Dropbox client sync issues, but I'll pass this along as a feature request. I can't promise if or when that might be implemented though.
-
Dropbox does offer an official SDK for Python as well as some sample code for it, in case that helps in your case.
-
To list the contents of a folder, you should use the /2/files/list_folder and /2/files/list_folder/continue endpoints. For the root folder, you should set the "path" parameter to the empty string "". Note that you're not guaranteed to get all of the results back in a single response, so be sure to implement both of those…
-
Thanks for the note! I'll ask the team to fix up that text.
-
For context, 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…
-
We can't offer help with "Hikvision DVR" itself, as that's not made by Dropbox. You'll need to refer to the support resources or documentation for that for help with it. If you're getting any unexpected error or output from the Dropbox API itself though, please share that error/output so we can take a look and help.
-
@"shankar267" Can you elaborate on what you mean when you say you are "not able to connect Power BI Desktop with Dropbox"? What error or unexpected output do you get from the Dropbox API?
-
@"gm72" As Здравко outlined, you can compare the list of members against the login events to see which members haven't logged in. The API doesn't offer a more direct way of listing members that have never logged in than that, but I'll pass this along as a feature request. I can't promise if or when that might be…
-
We can't offer help with the "andrea fabrizi script" itself, as that's not made by Dropbox. You'll need to refer to the support or documentation for that script for help with it. If you're getting any unexpected error or output from the Dropbox API itself though, please share that error/output so we can take a look and…
-
Unfortunately the Dropbox API doesn't offer a way to look up which account deleted a file like that, but I'll pass this along as a feature request. I can't promise if or when that might be implemented though.
-
@"AdnanL" Thanks for following up. Can you indicate what you're getting in the console though? Specifically, the "Token Result" value being logged on line 53 from the code you shared. Please don't show actual full access/refresh token values however.
-
It looks like that is currently a bug on our side when requesting this configuration, that is, using "files.permanent_delete". We'll look into and I'll follow up with you here once I have an update on that for you.
-
I see you're getting a 'path/not_file' error, which indicates that the path you're supplying to filesListRevisions is not for a file. The filesListRevisions functionality only supports files, not folders. Make sure you're only passing in file paths when calling filesListRevisions. (The filesListFolder* methods will list…
-
@"justindaw" Thanks for the additional feedback!
-
Update: we have extended the timeline and are planning to keep the current behavior until at least 3/14.
-
Update: we have extended the timeline and are planning to keep the current behavior until at least 3/14.
-
Can you elaborate on what you mean when you say you "are not having success retrieving the information on the post back"? Are you getting some error or unexpected output that you can share? You should be able to use the /2/team_log/get_events[/continue] endpoints to list events for your team. For logins in particular, you…
-
@"AdnanL" Yes, as Здравко requested, it would probably be helpful if you indicated what you're getting in the log. As a matter of security though, please don't share any actual full access/refresh token value. It would likely also be helpful if you could share some more context, such as: * the rest of the relevant you're…
-
The Dropbox API v2 JavaScript API v2 SDK doesn't offer the ability to cancel an individual request, but I'll pass this along as a feature request. I can't promise if or when that might be implemented though. For upload sessions though, since it involves multiple calls, you can stop the process in between any of the…
-
@"justindaw" Thanks for the note. I'll check in with the team.
-
That's correct, 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…
-
@"justindaw" I don't have an update on that yet. I'll let you know once I do.
-
You can find an example of processing the app authorization flow using the Dropbox API v2 JavaScript SDK in Node here: https://github.com/dropbox/dropbox-sdk-js/blob/main/examples/javascript/simple-backend/code_flow_example.js
-
Can you elaborate on what you mean when you say you are "having issue getting correct results"? What are you trying exactly, and what incorrect results are you getting? Please feel free to share whatever code/output you want to help show the issue, but don't include any access/refresh tokens.
-
@"Здравко" Thanks! That sounds like it may be a bug on our side as well. I'll ask the team to check on that.
-
@"rdee" I don't have an updated timeline right now. The original plan was to revert on 3/1, but I'll post if/when there are any changes.
-
@"Rolana" Thanks for the feedback. This thread is sufficient; there's no need to additionally vote elsewhere.
-
@"Здравко" Your code does work for me, as long as I add "-n", and plug in my own app key/secret and shared link. That "not_found" error should indicate an issue with the shared link in this case. Make sure you're supplying a valid and accessible shared link value and are encoding it correctly. For instance, it appears your…