chirstius Dropboxer

Comments

  • Sounds like that might be the case then. If you have additional questions just post them back, but once you get the root namespace, and add the path root header to your requests, I think you'll be in a good place. Good luck! -Chuck
  • Hey @"thbar", When you say the app can only see it's own documents and not the company (team) shared folder for #3 do you mean, literally the listing does not contain ANY team folder content at all? As if it didn't exist? If so, you may be using team space and member folders and would need to access the team content a…
  • Hello @"santosh111", Can you clarify what you mean by logging in automatically? If you are referring to access to the Dropbox website, then there is no direct way to automatically login if you have not been previously authenticated on a given browser instance. If you are looking for a way to take action on a Dropbox…
  • Ok, thanks for confirming. At the moment there isn't an interface via the API that would allow direct editing of content within Dropbox. You can either upload or download the entire contents of a given file, but you can't do byte-level modification on content, such as storing a new record/row of data within a database.…
  • Hello @"Toontic", A little clarification... Are you looking to store a database within Dropbox, and then access it programmatically (store data, perform queries, etc.) while the content is hosted remotely (on Dropbox)? Thanks, -Chuck
  • Hey @"gauravsc", It looks like you're using the "file_requests/list" endpoint - which will list any File Requests (a Dropbox feature that allows for content ingestion) but not any actual files. The endpoint you're going to want to hit is files/list_folder:…
  • Hey @"jary_capstone", At the moment you are not able to specify a starting folder for the Chooser, but I will submit this feedback to our team. Thanks! -Chuck
  • @"feklee" understood. You should have gotten an email with details of the super user program. If you are interested please respond and we can get those benefits activated right away. Look forward to seeing you here in forums! -Chuck
  • Hey @"feklee"! This is definitely the right place to post utilities like this. Thanks for your submission! We love seeing the great projects, tools, and utilities, that our community creates and hope to see more of them in the future. This is exactly the kind of content we're looking for from our super users, and I'd like…
  • Actually, re-reading what you posted @"itsrainman"- Once you have shared the folder via ShareFolderAsync() (what I think you're calling "creating" it) you do not need to call that method again. It's already shared (as the response you're getting implies). You just need to make the call to AddFolderMemberAsync() with any…
  • Hey @"itsrainman", Can you share a code sample of your call and the exact (full output) of the error response? -Chuck
  • @"scrouet", That's a little outside of my area of expertise so I suggest reaching out to our Business Support Center and seeing if they can get you headed down the right track: https://www.dropbox.com/support/email/business_and_teams/submit Thanks, -Chuck
  • @"time4116" you should be good using the previous cursor as long as you follow the processing guidance from the list_folder documentation.
  • Hello @"time4116", Can you clarify what you mean by 'all have the same ID'? Every entry you get back has the same file/folder ID? Aside from that, when calling /list_folder and /list_folder_continue you should be sure to follow the processing guidelines given in the documentation around how to process each entry (in the…
  • hey @"DeathApocalypse", Are you possibly including the data as an HTTP header? The JSON payload needs to be the actual body/data content of the POST request, not included in the headers. -Chuck
  • @"scrouet"- I have a hunch that your team has not moved to Team space and member folders yet, which means the results you are seeing are to be expected. Under the previous model if you share a folder with a user that does not have access to the root Team folder, it will be handled as if it's regular share. You can find…
  • Hello @"scrouet", traverse_only is one of several possible access rights a given user can have to content within Dropbox, as stated in our Content Access Guide here: https://www.dropbox.com/developers/reference/content-access-guide traverse-only: If true, the user only has traversal rights on the folder. Explicitly…
  • Hello @"Hongliang", This isn't really a Dropbox API specific question, it's more related to iOS task scheduling. I can't give you a direct answer here as that's outside of the scope of what we support in these forums, but I'd suggest you look into background task scheduling on iOS, for example:…
  • Hello @"Zuramaru", I'm not sure I entirely follow your question. Regardless of using the SDK or not, if you are following an OAuth flow to get a token you should be the one getting the token back in your code, and the token would be stored wherever you decided to store it. This should have nothing to do with the Dropbox…
  • Hello @"hzy916", I think the issue here is that you're trying to encode the PDF file as if it were text data and not binary data. Try creating a URL to the local file path and updating your request to point the 'input' parameter directly to that URL. See if that works as expected. -Chuck
  • Hello @"itsrainman", You might want to take a look at the docs for the AddFolderMemberAsync() method. It takes an AddFolderMemberArg as it's parameter. I'd try constructing a new AddFolderMemberArg, passing that in, and seeing if things work a little better. Hope that helps, -Chuck
  • Hey @"time4116", There's no direct way currently to exclude them via the initial call to /files/list_folder, but if you use /team/namespaces/list[/continue], you can filter the NamespaceMetadata that comes back on its "namespace_type" attribute. You could alternatively call /team/team_folder/list[/continue] and just use…
  • @"martinjuniqe", Sorry for the delayed response, here are the steps I took: First, configure whatever trigger you plan to use for the zap. Next, when you configure an action, select "webhook" and choose "Custom Request" and configure it as follows: NOTE - This assumes you are using a Team-linked access token with the…
  • @"Andre_LB", Thanks for the update and I'm glad the steps presented here before have allowed you to get the example app working. I think you're taking the right next steps by comparing between the two (example, and your app) and finding what differences might be causing the issue. We'll still be here if you need help with…
    in v2 API Comment by chirstius May 2018
  • @"Andre_LB", Let's take a step back here. At this point, I think it's best to just get the Android example app from the Java SDK repository running. I want to make sure we're both on the same page there. PrvDef is your custom application, correct? For the moment, I think we should hold off on that. Can you please verify…
    in v2 API Comment by chirstius May 2018
  • Hello @"martinjuniqe", Can you confirm if you are setting this up via the Zapier web interface or doing it programmatically? I was able to test via the web UI and this endpoint can definitely be called from a webhook. If you are configuring it from the web UI I can walk you through how I setup a test request to hit the…
  • @"Andre_LB", Can you please include details for the warnings and anything else logged about the error? Also, simple question, have you done a clean build? (Build | Clean Project) Thanks, -Chuck
    in v2 API Comment by chirstius May 2018
  • @"Andre_LB", I only changed the files and settings locally on my checked-out version of the example to get it running for me. I will be looking at getting changes made to the example but for now, I'd like to see if we can solve your issues via the same method. So, for the first step, can you please try making the following…
    in v2 API Comment by chirstius May 2018
  • @"lucasromeiro", If you are sending this over a raw socket then the curl commands won't work directly, they will show you what you need to send, but if you're truly at the level of raw sockets you need to implement the HTTP protocol yourself directly. Sending the literal curl command text down the socket to the Dropbox API…
  • Hello @"Andre_LB", So after doing an examination of the Android example from the Java SDK repository, I can confirm that I am able to get it running. However, I did have to make a few edits to the build.gradle file, the proguard-rules, and Android Studio itself, when running on a fully updated version of Android Studio.…
    in v2 API Comment by chirstius May 2018