Comments
-
Hi @"NPick672", While you're sharing something (including video) using link, it a only link, so it enough. 😉 You can share the same link to everybody. If you want to share a file explicitly (targeting all recipients), you have to point every one. Hope this helps.
-
@"_shintaku_" wrote:... I can't find 'size' attribute for folders in my requests response, my code is:- ... Hi @"_shintaku_", You can't find 'size' attribute cosa there is NOT such. Only files eventually residing in particular folder have such attribute on enumeration. To calculate total size, you need to enumerate entire…
-
Hi @"Fenoma", As a example you can take a look here. It's not a PHP code, but a command line curl execution. I believe you haven't problem to convert it. The most important is HOW it's gonna work (as idea). The code you posted as example should not be changed a lot (it can left almost the same). You have not to assume…
-
Dropbox can support many different formarts and actually doesn't "support" anything. Tha data are transfered and store as just a bunch of bytes 😉 (i.e. whatever you are uploading, the same you will get). Most probably you have uploaded something different or not exactly the intended. Check it - try inspect what exactly you…
-
@"sanathdevadiga" wrote: Hi , iam generatimg access token using refresh token only . Now file is getting uploading but when i open in dropbox it is showing currepted file its not opening. Can you help me in this . ... Following your question at all, seems you are trying guess what you need to pass instead of read the…
-
@"sanathdevadiga" wrote: ... I have already done authentication and i am generating access token also . ... Hi @"sanathdevadiga", It's great you have realized the authentication already. Just a warning here. You've mentioned access token only, but nothing about refresh token! Take in mind that access token expire after…
-
Hi @"Big Milk", In spite I don't have such a device I'm still curious how Dropbox application can be made work there. First of all take in mind that using discover you are installing third party package, not the officially supported one. Usually it matches exactly to the official one and packed in different format package…
-
Hi @"carp21", Put in some web search engine (like Google) some related phrase (like "cloud storage" - you can play with different words, of course) and I'm sure you will find different cloud services providing such features (features that Dropbox refuses provide). 😉 Here I'm just trying to avoid advertise one or other. Of…
-
Hi @"trithanhnguyen", Did you forget the path root we did talk about some time ago? 😉
-
@"trithanhnguyen" wrote:For the DbxTeamClient I do not have a way to list all the folders and files for each member of the Namespace. ... Does the listing fail? 🤔 Or something else before actual listing call... @"trithanhnguyen" wrote:... So I have to switch to the DbxClientV2 to do that. ... Of course, there is no other…
-
Better perform this call on 'dbxTeamClient' context. So you wouldn't need 'broken; parameter (it's meaningless actually). 😉
-
@"trithanhnguyen", Are you sure your 'teamMemberId' parameter carries correct value? Print it out and check the place where/how you get it from and is on that place something 'strange'. 😉
-
@"jorjbotezat" wrote:... I try to get the temporary URL using the "get_temporary_link " ... If I share the folder of the file, the request will be successful. ... Hi @"jorjbotezat", Are you certain your description matches exactly what you have done? What actually means "folder of the file"? I'm assuming the folder is the…
-
@"ultralame" wrote:Wait, the refresh token doesn't expire? ... Exactly. Or least to a moment (if any) when application itself revoke it or user, who granted access, revokes it. @"ultralame" wrote:... So I can exchange the static refresh token for a new token each time I run? I am deploying this to a couple dozen autonomous…
-
@"ultralame" wrote:... This means I would like to have a permanent token for a specific area within DB that we can upload and and download files by these automated systems. ... The refresh token is permanent (if not intentionally revoked or until revoke). About the "specific area": application folder access (instead of…
-
@"ultralame", Ask the target service what's the issue! Here we only can try guess. If the expectation is filename within URL, unfortunately it's impossible. In such a case check if there is an option they use the name in corresponding header (as is normally done by every browser, for instance).
-
Hi @"ultralame", You are converting initial link to download link. Seems like Dropbox serve all downloads as binary data (doesn't matter actual type). One simple solution is instead of converting to download link to convert the link to raw link (replace '?dl=0' to '?raw=1'). If your target service require download (i.e.…
-
@"Ivan_" wrote:... After I performed confirmation in browser that I am trusting source I get this thing in browser If look closely to URL it contains code that I need to extract automatically ... Yes, that's a desired behavior. The code (together with state) is passed as a HTTP query parameter (as denoted in documentation…
-
@"tanmimh" wrote: ... The reviews on discover show people getting it up and ready in a click Hi @"tanmimh", I haven't such a device (to be honest), but since all hardware and software requirements match, can be expected that Dropbox application can work (hopefully, in spite not officially supported). The install can't be…
-
The main question is where you have created all those folders? You seems don't use personal, but business account! In such a case when you create a folder aside your home folder you create another team folder (out of your home folder). As Greg noted, by default API uses Home folder (the one you are listing only). To list…
-
@"trithanhnguyen" wrote:... Do I need to do some extra setup to list all 3 folders. Thanks. In all cases you need to set your root to appropriate one using withPathRoot in addition to asMember, if desired folders reside in out of your account's user/member home (as seems it is).
-
@"trithanhnguyen" wrote:I want to list all the files under my member ID. I use the following code and it only show 1 folder even though I have 8 folders starting from root. ... You are listing all files in your user/member home folder (recursive eventually). If your rest folders are team folders/spaces then you need to…
-
@"paradoxIn" wrote:... Does dropbox supports SCIM protocol for user provisioning and deprovisioning. I checked DropBox documents, they provided http protocol based data crud operation ... Hmm... 🤔 @"paradoxIn", can you describe what is SCIM protocol? 🧐 What underlying protocol SCIM is build upon - in stack regards down to…
-
Hi @"AEC_IT", Take a look here for step by step example. 😉 Hope this helps.
-
@"Ivan_" wrote:... I need to get approve code programmatically ... You can use redirect URL and listen to there. What actually are you using the 'http' object for? 😉 @"Ivan_" wrote:... How it should be modified in order to get approve code automatically without user actions ? ... It's not possible for user side…
-
@"RogueBotanist" wrote:... dbx.files_move(from_path ='/Testing Application',to_path= '/Archived', autorename=False) ... But I am having difficulty moving the file. I have my selection mode in the app set to singleSelection so currently it throws an error because it's trying to move everything in the folder. When it was set…
-
Just to avoid some confusion @"maxior1234". Take in mind that if you have different strings as valid cursors, this doesn't mean they mandatory represent different enumeration states of the folder you're listing! I think you are assuming it - it's not true. Just perform a test - call multiple times 'get_latest_cursor',…
-
Hi @"_shintaku_", Did you try to continue pagination using 'files_list_folder_continue'? 🧐 If not, give it a try. 😉 By the way.. 'if 'size' not in dir(x)' ..statement is not very stable. Better use 'type(x) is '... Hope this helps.
-
Hi @"brian q.", Did you something to the source folder "/dcps/TheDishEpisode_SHR_F178_EN_US_20_2K_20220926_AutoDCP_SMPTE_OV" in meantime between first and second calls you described? Such an error usually means the source can't be found.
-
Hi @"ValentinLutchanka", Sounds like you haven't put the actual access token, but something else... or if you typed it by hand is there any chance you entered something else? 🧐 Try copy/paste (it's more reliable 😉) and select with care borders of what you gonna copy. Good luck.