Comments
-
@"Greg-DB", Just to avoid confusion: I don't think that's the issue source (or it's unlikely at least). Usually such URLs (instead of Paths) are used in context of proxy. For better understanding the issue, it's good idea to be posted some binary dump (that will let issue reproduction - eventually), I think.
-
Hi @"perco", In cases like yours, an easy workaround would be to replace original share link domain, pointing to your music/song (www.dropbox.com) to dl.dropboxusercontent.com, without changing anything else. 😉 That's it. Hope this helps.
-
@"rkanyok" wrote:... This code now just generates a broken link: <img src="https://www.dropbox.com/scl/fi/o8m8ndhzdhu5d72x84m2h/AP_Mirrabella_ShortKimono.jpg?rlkey=0iqsx5rs7c0vsj5kz78hlc9wp&st=nupsa3yn?raw=1" border="0" width="626px"> ... Hm..🤔 @"rkanyok", nothing generates broken link, but you have broken it. As mentioned…
-
@"awb" wrote:... POST: POST https://api.dropboxapi.com/2/team/features/get_values HTTP/1.1 Authorization: Bearer omitted ... Hi @"awb", I was surprised that Dropbox tolerates such a protocol mistake. The requests fail on Dropbox API servers because of much smaller mistakes. How actually did you construct such a request? 🧐…
-
Hi @"Graham", No so helpful, unfortunately. The methods described here (including the one from me, but not only) are convenient for relatively short lists (up to 25~30 entries sometimes or more - depending on your screen size and its orientation). Dropbox site design drops significant part of all invisible entries from the…
-
Hi All, 😉 For those of you wanting to print files/folders list of particular Dropbox page and not "afraid" of typing a line of code there is a simple solution: * Navigate to the page/list you want to print. Here you may want to align table columns for better page fit. * Open the browser console - something specific to…
-
@"Greg-DB" wrote:... That change has been fully deployed now. Unfortunately, in my own testing it doesn't appear this change helps, ... @"Greg-DB", I don't know what's fully deployed, but if that deployment has not been dropped in meantime, there is no any effect of it. I just checked and as seems additional new line is…
-
@"IanHuang" wrote:... Can we fetch the link from returned file Response directly? ... Hi @"IanHuang", Using such a way you always get some link back - even if you don't want. @"IanHuang" wrote:... Currently fetching that url returns nothing. ... There is no way to be nothing! It's another story if what you get is not what…
-
@"MikkBenelis", Yes, I agree that there are lot of bug tolerated services, like you mentioned. The existence of such bug toleration somewhere doesn't change the standard though! It stays the same. 🤷
-
@"MikkBenelis" wrote:... Not sure why this character is a part of the URL and if it is an HTTP rule, ... @"MikkBenelis", I believe you're receiving email notifying you about my current post. Take a closer look on the link pointing my post. Can you see there something similar to that you are not sure is it HTTP rule? 🧐🙋…
-
@"bookworm314" wrote:... However, when I try that URL replacement, I get a 404 error trying to access the file through code or on the web. Is there another trick here? Thanks! Hi @"bookworm314", Most likely you have damaged your link somehow. In general wget should work. Even more wget does some things automatically -…
-
Hi @"Nihad1", There is not such a callback. Though, you can do it in the same way as you have it partially done already actually. 😉 Take a look here for an example. Hope this gives direction.
-
@"Sheeja" wrote:... I couldn't find the quiet parameter here as part of the input. Is there a way to set this parameter here or any other way using sdk Hi again @"Sheeja", That's because you're using simplified method with limited available options. More options are available with other method that returns builder. There…
-
Hm.. 🤔 @"MikkBenelis", as far as I can see there is no any extra new line in both requests on your screenshot. You said that have one found. Can you clarify what exactly you found out and where it is? It may be useful to post a link to binary dump of your netcat output - there might be something else if not extra new line.…
-
Hi @"depotsy", Is your application in production stage, or in develop still? 🤔 Hope this gives direction.
-
@"MikkBenelis" wrote:... I understand relies on its own HTTP client implementation probably with libcurl and mbedtls libraries. ... @"MikkBenelis", mbedtls has nothing to do with HTTP formation; it, if used, is responsible for encryption only. libcurl, if used, works perfectly fine! I personally tested it and it works.…
-
@"aesqe" wrote:... looking at SwiftyDropbox code, it seems like I'll need to calculate the code verifier and code challenge; ... Actually you don't need it, @"aesqe", but is advisable. You do it when/if need/want use PKCE code flow - again something advisable, not mandatory. @"aesqe" wrote:... I'll see if I can somehow…
-
@"MikkBenelis" wrote:... The only difference is this extra new line at the end. I can't control it since it is an external library. ... Hm..🤔 Honestly I'm not familiar with that environment you're using, but as far as I can see it's .NET based. In such a case (if I'm not in confusion), why at all additional engine would be…
-
Hi @"MikkBenelis", I hope you know what netcat is and how it's used. If you transform https://www.dropbox.com/scl/fi/fc5rwkff82yvy66ktagv7/test.txt?rlkey=wqzs2qbbfazbgj3ttcaik9pq2&dl=1 to something like http://localhost:8080/scl/fi/fc5rwkff82yvy66ktagv7/test.txt?rlkey=wqzs2qbbfazbgj3ttcaik9pq2&dl=1 or similar, you'll be…
-
@"aesqe" wrote:..., but I can't find anything in the documentation about it, so I don't know how to format it. ... Yeah, Dropbox documentation is very "tiny", unfortunately. Many available and used features are completely undocumented, like the discussed one (but not only). Fortunately for some of them info could be…
-
@"aesqe" wrote:... I've tried using the Linking class from react-native to call Linking.openURL("dbapi-2://1/connect"), but that just opens up the Dropbox app and nothing more. ... Hi @"aesqe", Ok, but how do you expect Dropbox application to know what exactly you want to connect to your account? 🤔 Is that entire URI? You…
-
Hi @"depotsy", It depends on how large are those files. One option, for not very large files, is usage of Dropbox Saver; take a look here for example. Other option is implemented client side application (in addition to your server side application) working with upload session; largest possible file would be 350GB. Hope…
-
Hi @"erich_e", In both cases (downloading a regular file of any kind or a folder as a zip) there is stream that may be use as you would like. Of course you may redirect/copy this stream to another file stream that refers to file named as you like. Is there something that prevent you do so? Good luck.
-
Hi @"MikkBenelis", To be sure what's going on you need to dump your request and see what's there. Otherwise it's just a speculation. @"MikkBenelis" wrote:Seems like I'm facing the same or really similar issue. Just wanted to try Dropbox for my pet-project read-only data storage and found that it always responds with a 400…
-
Hi @"mjmt", As seems, you observe only the first page of your list. Did you try continue listing? Keep in mind that list metadata are provided on pieces and every piece size is NOT guarantead (despite controlable). You have to check for more results waiting and continue when needed. Don't rely that entire list will get…
-
@"ELEWYG" wrote:... proxy_set_header Host $host; ... Hi @"ELEWYG", I'm a bit confused about the cited configuration line. 🤔 Why is it there and what is it supposed to do? 🤷 Did you try the same (resulted) request in your browser (the same request your server send to Dropbox) or in some other way? 🧐 Try catch the request…
-
Try something like following: res, stream = dbx.paper_docs_download('12345678', ExportFormat.markdown)print(f"Title: {res.title}\nOwner: {res.owner}\nMime: {res.mime_type}")print(stream.text) Are you sure you have docs read? 🧐 Anyway... Hope this helps.
-
@"Sheeja", I don't know what more I can say. Did you try what I said above? As far as I can follow your questions, you haven't even give a try. 🤷 That's the way! If something confuses you, clarify your question. For additional info take a look here. By the way stop saying that you accessed only your root folder. The folder…
-
@"Sheeja" wrote: ... Is there a way to disable this notification... @"Sheeja", Did you try set "quiet" parameter to true when you add a file/folder member? 😉
-
To implement this feature from zero on your own.