Здравко Legendary | Level 20

Comments

  • API endpoints are correct, but it's another story what are you doing with them! Maybe something is wrong with what you do. I though that what you showed comes from other provider and my previous advice was in this context, but since you're doing all calls, clarify what exactly are you doing. Take a look here, as an…
  • Hi @"Jon B.1", Your issue is just one symptom of a bigger problem related to Dropbox application. It's not something related to Dropbox API. Unfortunately, the application' developers are too lazy, as it seems, to prepare and publish documentation for the application exported features. 🤷 That's it. One way you may try to…
  • Hi @"Pixel Clear", One thing is certain - your issue is not directly related to Dropbox API, since the error is not coming from Dropbox API. Contact your middle stage environment provider for further info and if needed that provider will contact Dropbox with additional details. Good luck.
  • @"DisorganisedDropOut" wrote:..., който бях свалила и изтрила от Dropbox. ... Стела, за да предотвратим бъдещи такива проблеми си позволявам да ви поправя тук. Всъщност вие сте свалила/копирала желаната папка, НО нищо не сте изтрила! 👆 Не забравяйте това. Точно затова се е получил конфликт. Премахване с помощта на Dropbox…
  • @"DisorganisedDropOut" wrote:... Unless there is another solution Mark suggests for me, that is where I'm headed 😞 ... Здравей Стела, Не съм сигурен, че предложението на Mark е подходящо за вашия случай. Имайте на предвид, че споменатото предложение връща към предишна версия на файл, която вие желате, когато такава…
  • @"linuxlion" wrote:... I change the (old) password on https://www.dropbox.com Should I then also the password on the client? Changing the password should not affect any application' work. All applications are authorizing their access with autogenerated credentials that don't change with changing password. Can you see your…
  • @"linuxlion" wrote:... Where can I find the configuration with dropbox-account and password? How can I debug the connection problem? Where can I find dropbox logging? Hi @"linuxlion", That's not possible unfortunately. On any system, Dropbox client doesn't provide any logs info (only exception is limited logs on crash). As…
  • It is exactly what it is... I don't know what more to say. Ok. Check what actually you have provided with this.refresh_token, for instance. Dump it and see is it a refresh token or by mistake you are providing something else. Check also, is it exactly what has been received on initial authentication (first call to token…
  • Hi @"backdraft", Your idea is correct, but as seems you don't fully understand the basic authentication (RFC7617). Pay attention on the second section where are 4 steps to construct such a header. Did you perform the last one (4-th) step? 😉 Hope this helps. By the way Axios may do this authentication for you. Just provide…
  • @"fabd" wrote:Thank you aristocles! ... hopefully DROPBOX will fix this soon. ... 🙄 Hope is bliss 👼😉
  • @"DisorganisedDropOut" wrote:... I can now see that both folders have '(Selective Sync Conflict)' after their names. ... Hi @"DisorganisedDropOut", 🙂 Never do that! Don't put something in a folder which is selectively unsync. In such a way there are pairs of files that are supposed to be on the same place - impossible of…
  • @"K2R400" wrote:... Can I create a new Token and deactivate the old one (or not)? ... Hi @"K2R400", You can deactivate old one, but cannot create new long lived access token! Long lived access token issuing is dropped for long time already. For long term access you need to handle refresh token and short lived access token.…
  • Hi @"JohnAdam_CUNY", First of all, you have to provide list, even for a single member - list of UserCustomQuotaArg. As could be seen there, value is in GB (just keep in mind that it's not entirely true - Dropbox uses GiB and similar units everywhere - including API). By the way "20 * 1024 * 1024 * 1024" are 20GiB, not…
  • @"one_thing65452" wrote:We are connecting to DropBox on Android app. ... Is there ... code example? ... Hi @"one_thing65452", Take a look here. 😉 Hope this helps.
  • Hi @"Ghislain Sommervogel", The API always returns (with either success or some error). What you're talking about is Dropbox .Net SDK though - make difference. 🙂 It's different thing and, by idea, it's supposed to make your life easier. As seems, in your case, something makes the SDK to think API call never finish and…
  • Yes @"adster", you just confirmed my initial suspicions. 🙂 The really weird thing here is that it happens on Mac. It's old know bug that Dropbox application on Mac attaches file attributes that confuse others Dropbox applications on other platforms, but for the first time it confuse other Dropbox Mac application (or maybe…
  • @"Hannah" wrote:... in kilobits and megabits (KB and MB), while most cloud storage providers measure the size of data in kilobytes and megabytes (also KB and MB). ... Hi @"Hannah", Just keep in mind that B, KB, MB, GB, etc. are all multiple of Bytes, NOT bits!!! (or that's the rule, at least - incorrect enlabel is always…
  • @"TalesCreator" wrote:..., and the integration abruptly started to return error of path "not_found" ... Hi @"TalesCreator", You may try do the same call using Dropbox API Explorer. Use the same parameters like in the application - i.e. use the same file id or path - whatever is in the code. What do you get there? Good luck.
  • Hi @"cankayaalperen", Take a look here. I hope you can understand why your token expires and how to fix it. 😉 Good luck.
  • Hi @"pisyavtapke", First of all, your code is bad structured - direct use of access token is discouraged since it expires. For long term use, better use refresh token. Next, just pulling up arbitrary team member (even the first one - it's still unknown) is insecure if you don't relay on something "strange". Where do you…
  • Yes, of course. Since your account is new one and there is no even one folder yet, that's why that panel is empty - there only folders appear. By the way everything syncs by default (including folders - they will appear selected). If you want to remove some, you can deselect them, so will be available only in you web…
  • 🙂 Ok. Where is the API related error, mistake, mismatching, etc? What are you getting as error response? What is the status code? All are questions, you have to answer, and one of them at least have to be related to Dropbox API (the same for any other API)!
  • @"Lukag" wrote:... First of all, in you opinion is correct use streamreader ? ... What you use is matter of design decision, so don't ask anybody else. The best way follows what you're doing. If you don't know what are you doing... no way to decide what's the best (or even to suppose). Such questions are not Dropbox API…
  • Your error message means that in your code you have used something not initialized at that time. That's it.
  • @"Lukag" wrote:... Dim client As HttpClient = New HttpClient() ... Dim myStreamReader As New StreamReader(_responseStream) ... Then, what's different and common in above code lines (aside of different types)?
  • @"Lukag" wrote:... Dim myStreamReader As New StreamReader(_responseStream) ... Hm..🤔 Let's see what's going on here. Does the 'myStreamReader' variable get declared here, or get value assigned, or...? 🧐
  • @"GG325" wrote:... ... What does happen if you click on "Select folders" button? 🤔 Does it match to the video? 🙂
  • @"Hannah" wrote:Hey there, @"GG325", the Dropbox application is the same for all our users. ... Hi @"Hannah", Hm..🤔 Really? Have you ever tried to use Dropbox application on Linux? Is it the same like on Mac and Windows? 🧐 My impression is in different direction. Also, How you're doing with teams in Dropbox application on…
  • @"Ghislain Sommervogel" wrote:... In some other cases, after about 60 seconds I get a "too_many_write_operations" error. I don't know how I'm supposed to handle this error. Currently, I just resend the instruction. ... The cases, described by you, usually happen when there is some sort of overload on particular namespace,…
  • @"yyyhhh" wrote:... How can I add my domain to frame-ancestor? Is this in the app's setting page? It doesn't seem to work. ... You have answered to your question already and it should work. One thing that you missed is Chooser cannot be mounted! Only Dropbox Embedder can be mounted. Dropbox Chooser may only open in new…