Comments
-
@"SC_dev4" wrote:... I checked the permission of my app thoroughly, and I do havee metadata.write activateeeed. ... You don't have any issue with the required scope. If the scope was not set, your error would be 'missing_scope' and will inform you about the scope you need to add to be able use particular endpoint. Since…
-
@"Lukag" wrote:I changed my code but i have an error 400 Bad request ... Hm..🤔 You didn't mention, but let me guess: the error message states - unsupported grant type or so. Right? What grant type you're using EXACTLY? 🧐 Focus on "exactly"! Even one letter - more or less - may make the things wrong. 😉 PS: Print out what…
-
@"Lukag" wrote:... I would like to understand where I'm going wrong. Let say...🤔, where did you see/conclude from, that the above is the way do what you want to do? 🙂 I'll stop here. You know the rest. You can take a look an example like this one, where external command gets executed in other application. Can you do the…
-
In most cases, setting the account root namespace id is enough since in such a way you can access everything accessible to particular user. So maybe it's the best way for you too. If you want to select from other available namespaces, you can enumerate them using /2/team/namespaces/list/continue. Hope this sheds a light.
-
No, you cannot. Only Dropbox Embedder appears in iframe.
-
It may be easier for you to execute curl, that you know how it works already, as shell command and read the StdOut that comes back. 🙋
-
Ha..🤣 You just found an imperfection out. 🤫 The 'auth' field is there, but for whatever reason is not declared in type script. 🤷 That's why your interpreter complains. You can workaround as re-declare Dropbox and include the "missing" field or construct DropboxAuth object on your own, save a reference, and pass it on…
-
Hi @"deeptir94", Your issue is related to the fact that API default access start from users home folder. While for individual users their home is their account root, for business user home folder (the your folder starting with "svc" as seems) is not account root (or at least not mandatory to be - in most cases these days,…
-
@"Brad Henderson" wrote:... So I need to find the correct command to submit the new access token received from the refresh token request. ... I don't know what exactly you are doing, but access token is always the same (I mean as type). The only thing you need to do when access token expires is to make refresh request and…
-
Did you check your email spam folder and make sure Megan email doesn't reside there by any chance? Good luck.
-
@"Johnnz59" wrote:... I am also unable to sync, as the third device could potentially be the i-Pad I no longer have in my possession. ... You can unlink any device in link with your account here. 😉 Just press the trash bin next to device you want to unlink. Hope this helps.
-
I hope you have heard about Object Oriented Programming (OOP). It's not matter of OOP language in usage! The language makes the things easier, but it's only a predispose - it doesn't make your code object oriented automatically. Actually, you can use procedure oriented programing language (for instance) and follow object…
-
Hm..🤔 Can you recall this? 🙋🤫 Oh.. that laziness... Is it so "impossible" not to jump the things over? 🧐🤣
-
refresh token doesn't expire. The tokens (and the JSON at all) are not ordered, so I don't know is it second one or not (better don't rely). Navigate on base of the field name.
-
It is not mandatory you use curl command. You can use any other, but of course should adapt the params. Not all command have the same params set! My example (and not only) uses original curl command, not aliases that point to something else. Check what your alias points to. It looks like some shell' internal redirection…
-
@"Lukag" Try read again the thread I linked to. There have been all steps shown. That you have posted is the thing you don't need encoded mandatory - i.e. execute by hand single time only outside your application. The last step, you skipped above, is mandatory to reside in your code. It may generate new access tokens…
-
Do you understand that there are different tokens? 🧐 @"Lukag" wrote:... Duration token is 4 hours, if generate now and tomorrow i'll use it in my app , the server'll answer me that token in expired / invalid ... What token do you take in mind above? 🤔 Read again entire thread here and linked resources. 👆 Don't jump over!
-
@"Lukag" wrote:... Can i do it run time by api ? Definitely NO! API cannot self authenticate. 🙂 If that was possible, it would be a big security HOLE. Actually, the refresh step in my description above (that you don't like) does exactly this, but it's different thing. There refresh token is used for authentication (valid…
-
Hm..🤔 To be honest, I don't understand what you mean. Maybe the actual question should be do you need long term access or not?! This is your design decision though. 😉 If you need a single shot (i.e. something that would be run occasionally) application for your own use only, getting access token every time might be better…
-
@"Lukag" wrote:... this is the command https://www.dropbox.com/oauth2/authorize?client_id=.....&response_type=code&token_access_type=offline ... Hm..🤔 What I wrote there is: @"Здравко" wrote:..., open a new browser window and put into address line following:…
-
@"Lukag" wrote:... How is valid a token ? should i generate a new one every time i use my web app ? Access token is short lived, so you may use it for limited time - typically 4 hours or so. If you plan to rely on access token only then, Yes, you will need new every time you are using your application. There is alternative…
-
Yes, of course. it's case sensitive! Also, make sure the path is valid... you may start with just empty string - it's always valid.
-
Are you sure the access token you're using is actual one and not expired? 🧐 Also, post the received result (either error or success) so it be clear what's going on exactly..
-
The endpoint for folder listing is RPC call style endpoint. RPC on Dropbox uses POST request and it's mandatory 'path' to be passed in JSON style to the request body. Fix your code. Good luck.
-
@"eni8ma" wrote:I made a codepen to test for you guys instead ... both play fine on desktop but buffer on mobile Below is how your example appears on my phone: As you can see more than half minute no any break (buffering, etc). That's it.
-
Take a look here for some details and possible way to workaround. Good luck.
-
Hi @"eni8ma", I just tried it and looked on the video for few minutes on different devices - laptop and mobile with landline and mobile ISP... no any break during the play. There was sometimes initial delay 2~3 seconds at most - something that may be compensated with avoid using autorun and play with script (with well…
-
Hi @"yyyhhh", To use Dropbox Chooser you don't need additional authentication (including you don't need any access token to work). It will be enough the user (eather you or somebody else) to be logged in in desired Dropbox account, nothing more. 😉 Hope this helps.
-
Hi @"Brad Henderson", I see, you have selected that url command as base for what you're going to do. I believe, you have the command tested and it works fine. Right? Something I cannot understand though, where did you decide from that JSON is sended? 🤔 There is a way to check this. Add one more option to the curl command -…