Comments
-
I'm not really sure about Java, but looks like it could be FileMetadata or FolderMetadata EDIT: Looks more like it's FileLinkMetadata (Sharing.FileLinkMetadata)
-
By now I could just get the "whole" folder name. Let's see if Greg or another Dropboxer replies, but I did it this way: //We obtain the filename on Dropbox to save it later var taskDescargar = Task.Run(async () => await dropbox.Sharing.GetSharedLinkMetadataAsync(link)); var result = taskDescargar.Result; string…
-
I can't try it here and now, but I would perform a GetMetadata, list all links for all the files and then perform a usual download changing the last character (the =0 by =1, so it forces the download). I don't know if that replies to your question...
-
It makes sense totally since v1 will be turned off in June. You might be registered as a developer or you published an app with your account. In that case, you might be interested to migrate to v2 ASAP
-
The Shared Links have their own "format" so you need to get the metadatada, parse the name and then perform the download and apply that parsed name and file extension. At least that's how I do that using .NET on a fully "apished" (lol) application.
-
Holy s***, that was it. I changed the Navigated event and it was like magic... I feel like a dumb, but it's finally working. It feels really weird, but it was worthy. I guess I wasn't thinking clear due to working all the time on this glitchy thing. Thanks Greg!
-
Hi Greg: I used the overloaded DropboxOAuth2Helper.GetAuthorizeUri(appKey) Uri authorizeUri2 = DropboxOAuth2Helper.GetAuthorizeUri(appKey); and I got a token which I manually copied but the DropboxClient constructor says there is an AuthException. At this point I'm manually going to the…
-
Hi again, Greg the Dropmaster! Thank you so much, I finally did it this way, so I control if the link is already created and act if so :slight_smile: var link = await dbx.Sharing.ListSharedLinksAsync(remoteFilePath); if(link.Links.Count == 0) { var result = await…
-
Thank you so much for this answer! This made my day, Greg! Have a nice day, DropBoss!