Comments
-
¡Perdón por el retraso! Parece que su hilo se movió recientemente a la sección API. Para referencia futura, asegúrese de publicar cualquier pregunta sobre la API en la sección API. 1. La documentación para webhooks se puede encontrar aquí. La información allí es precisa. Es probable que desee utilizar webhooks junto con…
-
¡Perdón por el retraso! Parece que su hilo se movió recientemente a la sección API. Para referencia futura, asegúrese de publicar cualquier pregunta sobre la API en la sección API. De todos modos, independientemente de la cantidad de artículos que tenga por lote, deberá esperar a que termine cada trabajo antes de comenzar…
-
The get_thumbnail and get_preview endpoints return the requested thumbnail or preview data directly in the response body (as application/octet-stream). Exactly what you do with the data is up to you; for instance, you might save it to your server and serve it back to the web browser, convert it to a different format, etc.…
-
@"iyushchuk" Are you referring to the "Open with" functionality on the Dropbox web site in particular? Right now, this is only available to select partners chosen by Dropbox, and I can't make any promises as to if/when it would be made publicly available. I've sent this along as a request to make this more generally…
-
@"hartla" This was an old thread about an issue that has since been resolved. It sounds like you're seeing a similar issue now, so please open a new thread with steps for reproducing the issue you're seeing so we can investigate it for you. Thanks in advance!
-
Thanks! I just gave this a try though, and it successfully downloads the file and outputs the file content for me and then exits the program. It doesn't hang for me, so it does sound like there is something about your environment causing the issue. (For reference, NotMain is async but your call to it isn't awaited so I…
-
Thanks! We'll review your request soon and reply by email.
-
To get user information, such as their name or Dropbox account ID, you should use the /2/users/get_current_account API endpoint. (That's usersGetCurrentAccount in the official Dropbox JavaScript SDK.) In order to make that API call though, you first need an access token for the user. You can get an access token for the…
-
Production status can only be set by Dropbox. To request that we change your app from development mode to production, you'll need to apply for production. We'll then review your app and the information you provide. You can find more information on the process here. You can submit your request using the "Apply for…
-
That 500 error code indicates an internal server error. We'll have to look into that on our side. Can you print out a few of those DropboxException objects as strings and share them? Those should each contain a request ID that would help us look this up on our side. Thanks in advance!
-
I'm not sure I understand your question. What are you referring to when you say "Department name"? That's not something that's recorded on Dropbox for Dropbox Business team members, and accordingly is not a property of TeamMemberProfile, for instance. If you're looking for which "groups" the member is a part of, that's…
-
Thanks for confirming that. Yes, there is a limit of 10,000 search results. (I'll ask the team to clearly document this.) If you need to return many files like this, please use /2/files/list_folder[/continue] instead.
-
Unfortunately I don't know what may be causing this and I can't reproduce this using the code you shared. Please share a sample project that demonstrates the issue so we can reproduce it here and investigate.
-
What do you mean when you say you "cant step inside to see where exactly it hangs"? Did you connect a debugger, and if so, what happened? Are there any potential issues with your network connection? E.g., is there any firewall, proxy, or other piece of software that may be interfering? It may be worth trying this on…
-
Based on your code here, it looks like you're attempting to access www.dropbox.com/oauth2/authorize via an ajax call, but it's actually a web page, not an API endpoint, so you shouldn't access it via ajax. You should send the user to the www.dropbox.com/oauth2/authorize page as a URL in their browser. There, they can…
-
I just tried this line of code and it returned successfully for me. What version number of the SDK do you have installed? Update to the latest, currently v4.9.3, if you're not on that already. Can you elaborate on what you're seeing? Do you get any error or output at all? How are you seeing it get "stuck"? I recommend…
-
@"jagada77" No, unfortunately it doesn't look like there are currently plans to implement this.
-
1) This "Before you connect this app" notice is not shown if the app is in production mode. If you want to remove this notice, you should apply for production for your app. 2) This is the actual authorization step where the user decides whether or not to allow the app to connect to their account. It's not possible to…
-
The first thing that comes to mind is that "Standard" Business plans don't get file events in the audit log. You mentioned that you have "Advanced", but can you double check that it hasn't been changed to Standard? Otherwise, please open an API ticket so we can check on this specifically for you. The following information…
-
Using the API as I described above would offer you the most control over the integration, but one other solution would be to download from the link directly, without using the API. There's information here on how you can modify these shared links for direct access. You can then programmatically download from the modified…
-
@"PG1954" I recommend contacting Dropbox support directly for help with this: https://www.dropbox.com/support
-
The Dropbox API doesn't offer exactly the same interface as the shared link web site itself, but here's what is available: * to list the contents of a shared link for a folder: ListFolderAsync with the 'sharedLink parameter' * to list the contents of a nested folder of a shared link for a folder: ListFolderAsync with the…
-
I just took a look at that third party libray, and I can confirm it does use the old Dropbox API v1. To clarify one point, Dropbox API v1 is already retired, and so it not available. Attempting Dropbox API v1 calls will fail.
-
Just to be clear, I've sent this along as a feature request, but I can't promise if or when Dropbox would release an official C++ SDK for API v2. (I'm not currently of any such work on one.)
-
You're on the right track. That is, you can upload files to Dropbox using HTTPS requests to /2/files/upload, and you have the basic code to do so already. It sounds like you're currently working on how to get the data from the local file system though, which isn't specific to Dropbox, so I'm afraid I can't offer much…
-
We don't have a separate public feature request tracker for the API. This forum thread serves as the reference for this request and I'll follow up here if/when I have any news on it.
-
@"Здравко" Thanks for helping out! I can't speak to why any particular language was or wasn't supported in an official SDK, but I'll pass this along as a feature request for an official C/C++ Dropbox SDK. I can't promise if or when that might be implemented though. @"hb_" If you're still having trouble, please share the…
-
It looks like you also posted about this in another thread, so I'll close this one in favor of that one.
-
If you want to access the accounts of any/all team members of the connected team(s), you'll need a Dropbox Business API app with the "team member file access" permission. With that, you can use the "member file access" feature to access the account of any team member on the connected team. This is available in the .NET SDK…
-
I'm glad to see you already sorted this out. I also see that you are using team-owned templates, so I'll send this along as a feature request for support for setting properties for team-owned templates on folders in addition to files.