Comments
-
Hi @"netmarine", Are you sure that the watches number is enough? How many files have you in your Dropbox folder? You can try the following to check If your selection is fine: echo -n "Your Dropbox folder entries approximate count is "; tree -a "/persist/Dropbox" | wc -l; sysctl fs.inotify.max_user_watches What's the…
-
@"apo1397" wrote:... But there's no option to select 'Dropbox Business API' ... Hi @"apo1397", That's really annoying! Seems application type gets limited in creation time, not clearly defined why. A workaround would be force 'unhiding' of target option (Team member management). Take a look on the screenshot:
-
@"supportRcell" wrote:I wonder if it is possible to generate share links through the API that do not expire? ... Hi @"supportRcell", Yes, of course. 🙂 But, if you want links "that do not expire", why you are trying 2/files/get_temporary_link which is directed for temporary links creation? 🧐 There is more general API call…
-
Hi @"eranga119", Why are you passing the body part (in your post: $share_link) in header part? The particular error message denote the sticking the body to the "Content-Type" header, which is NOT correct of course. 😉 Hope this helps.
-
Strange... 🧐 🤔 My local Dropbox files have never hidened and always reside on the same place: I have verified this on Android 6, 9, and 10. The above is from my last phone running Android 10. 🤷 Dropbox version 214.2.6 (the last one at this post moment). All media files get accessible successfully. 😉 I'm successfully…
-
@"TikiJanie" wrote:... I consistently and radomly receive the message in all three of my company files. ... Hi @"TikiJanie", What you mean "all three of my company files"? Does it happen only on particular file types and/or such managed with same/similar applications, but not on other file types/applications? Is it…
-
Hi @"survivestyle", Probably you haven't unlinked the application from your account in a proper way. The reinstall can NOT break the application link; it's not part of the installation, but part of the configuration. One alternative is wipe out the entire configuration. If you use "Selective Sync" or other local settings,…
-
Hi @"Freddy shaddy", I just take a look on Moodle and there is an application specific Dropbox client; the official Dropbox php SDK isn't used. In the client is missing initialization of the 'scope' field in the class' constructor. That's the bug. 🧐😉 You can fix it yourself. Good luck. PS: A bit more help info for you.…
-
Hi again @"liftbox", What exactly you have tried? Did you get in loop with 2/team_log/get_events/continue till the moment when "has_more" becomes false? 🤔 Make sure on each loop's pass you use the cursor from the last call result (either get_events or get_events/continue). Don't use the same cursor! What is the result of…
-
Hi @"liftbox", Dropbox API calls (and not only) retrieving array of information (such as 2/team_log/get_events) are asynchronous. Which mean it's not clear when exactly the information you are querying gonna be available and in what "pieces" size. That's why there is "has_more" in the result. has_more Boolean Is true if…
-
Hi @"Freddy shaddy", Where are you generating these URLs? You shouldn't change already generated URL by hand, but have to correct the code in a way the "scopes" field doesn't participate anymore. Hope this adds clarity to @"Greg-DB" description.
-
@"dolfke" wrote:An M1 is a Soc, that's much more than only th cpu. ... 🙂😃 Yes, of course, and it's not the only. In fact most modern compact devices are almost same, in this context - SoC (System on Chip)! Is this make them less ARM?! 🤔 Again, rhetorical question. 😉 Almost all ARM devices are SoC!
-
@"dolfke" wrote:An Apple silicon M1 Mac only uses the ARM instruction set but is not really an ARM cpu. ... Hi @"dolfke", 🙂 Just to avoid some confusion. 😉 "ARM" (and all its versions) is a standard defining instruction set, nothing more! How the instruction set will be implemented from every one hardware provider is…
-
What about Linux too? 🧐 How long gonna be ignored? 🤔 Linux has always supported ARM!
-
@"celinafregoso99" wrote:... val mediaItem = MediaItem.fromUri("https://www.dropbox.com/s/lbe1kod9t6yuh5j/sample1.m4a") how to solve this ? You're not pointing media file but a preview page (i.e. HTML)! One alternative is download link: val mediaItem =…
-
@"MartinHeroux" wrote:.... Incidently, some of the symbolic links do point outside of dropbox, but that does not seem to be a problem as everything synched fine after I fixed the max_user_watces limit. Be careful, @"MartinHeroux"! Such links get in sync, but the content they point to not. ☝️ If this is not a problem... 😦…
-
@"MartinHeroux" wrote:... this is why I got a bunch of errors like this: chattr: Operation not supported while reading flags on [...] Does this mean I need to somehow remove these symbolic links in order to get my Dropbox synching unstuck on my Linux machine? ... Hi @"MartinHeroux", Not actually. If the other 2 line in…
-
Did you check what I have advised above or not? Notice different token could have different access on same account!
-
Seems http format is acceptable, but what about path existence? For example, you can check the root folder list results on Dropbox API Explorer with empty path and the same access token used here. Does the "glucose" folder appear in the result? 🤔 If Yes, continue the check recursively.
-
Hi @"deebee_it", You haven't mentioned what is the exact "MYPATH". First: Are you sure the path, you are referring to, exists? Second: You are relying on utf-8 encoding. Take in mind that Dropbox interpret all JSON input as a ASCII string, the encoding set is ignored! If you are using some simbol(s) outside ASCII set, make…
-
Hello @"Dima", @"neuromante", Yes, I agree, there isn't something suspicious. Seems like some strange behaviour 🤷; Not something new for Dropbox application for linux 😠, unfortunately. The last years, the only new "features" are bugs and restrictions! Communication to the system tray isn't a plus for Dropbox, generally. If…
-
@"arch2020" wrote: ..., it seems that with app folder, there is no need for referencing the name of the app, as the default location of the app, will always be the name of the app folder. ... 🙂 Almost exactly! 👍 Actually, the app' folder forms a namespace that become a root folder for access from the application side. 😉
-
Ok, is there something strange on Dropbox startup? What is the result of: dropbox stop; dropbox start Some diagnostic messages appear there sometimes. Post the result. Let see it. 🤔
-
🙂 Yes, as I have guessed 85186 is much bigger than 8192! The limit have to be above the actual value. Next some reserve addition, you can use the suggestion from the error, you have received previous, without any change. I'm repeating it below: echo fs.inotify.max_user_watches=100000 | sudo tee -a /etc/sysctl.conf; sudo…
-
Hi @"Iplicjian", All those "unwatched" don't look well. Let start step by step. You haven't checked your whatches limit yet, as I suggested. Let's make sure you have some basic tools installed using following: sudo apt-get install tree jq Now, current watch limits could be evaluated using following: db_path=`jq -r…
-
Hi @"neuromante", Is there some reason you are using beta/test application version? Did you try stable release? If not, go in general settings and make sure "Early release" there is turn off. Next, run following commands in terminal (line by line): dropbox stop rm -rf ~/.dropbox-dist dropbox start -i Hope this helps.
-
Hi @"arch2020", Try transform the path from "/Apps/App_Name/example.xlsx" to "/example.xlsx". Is this helps? 🤔 Try to explain why. 😉
-
@"johannesjo" wrote:... `GET https://content.dropboxapi.com/2/files/download?ngsw-bypass=true 400 (Bad Request)` ... Hi @"johannesjo", Take a look on the documentation more carefully. The query must be POST, not GET! Hope this gives direction.
-
@"Iplicjian" wrote:Results : ... user@AsusA54C:~$ sudo chattr -R -i "user" ./Dropbox chattr: No such file or directory while trying to stat user chattr: Operation not supported while reading flags on ./Dropbox/ONLINE ONLY (cloud storage)/Dec 2014 to Jan 2015.photolibrary/Database/BigBlobs.apdb ... Hi @"Iplicjian", Pay more…
-
Hi @"MarkusF", Try remove protocol name out of host name. Hope this helps.