Questions tagged [dropbox-php]

Dropbox PHP SDK is MIT licensed and intended to be useful both as reference documentation and for regular use. However members of Dropbox developer community have also created alternative libraries in other programming languages.

The Dropbox API allows you to build the power of Dropbox directly into your app. The API provides methods to read and write from Dropbox securely, so your users can bring all their important files with them to your app. Get access to Dropbox PHP SDK Development Kit that provides access to the Dropbox REST API.

Source: Dropbox

122 questions
0
votes
1 answer

Can't get the list of files from Dropbox in android

I cannot get the List of file from the Dropbox. package com.example.contactmaster.dropbox_api; import java.util.ArrayList; import android.os.AsyncTask; import com.dropbox.client2.DropboxAPI; import…
Gaurav Mandlik
  • 525
  • 1
  • 9
  • 42
0
votes
1 answer

Automatic login to Dropbox server-side

Short version: Is there a way that my PHP application can login to a certain Dropbox account by doing the complete OAuth 2.0 process server-side? Long version: Consider the following steps: Navigate Google Chrome to the login page my Dropbox app:…
Jonas Sourlier
  • 13,684
  • 16
  • 77
  • 148
0
votes
0 answers

extract Dropbox Zip on server using php

I'm building a website for my band. However, as I don't want to be the only one maintaining the site, I want to allow the other members to contribute via a dropbox-folder. I have received a direct download link from dropbox that zip's the whole…
Nick
  • 3,143
  • 20
  • 34
0
votes
1 answer

ask for the re-authentication in api when logout from dropbox

I am using php sdk provided by dropbox to fetch user's images. All is working fine. When user comes to my website and clicks on the dropbox button, it is asking for the authentication first and then imports the user's images. Because of this process…
Ashish Shah
  • 152
  • 1
  • 3
  • 16
0
votes
0 answers

Why don't files I delete with Dropbox's Core API get deleted on my local machine?

I verified that the API successfully deleted the files from Dropbox by logging in to the Dropbox site. However, they remain on my local machine long after deletion. Clicking on the icon in the menubar indicates that it is up to date, but the icon in…
Curtis Blackwell
  • 3,130
  • 3
  • 27
  • 45
0
votes
1 answer

how to logout a dropbox account with php

i am using dropbox php SDK and i want to know is there any way to logged out the dropbox account with any php function??? i am using this code using curl to logged out function logout() { $ch = curl_init(); …
john
  • 567
  • 8
  • 23
0
votes
1 answer

how can i get only modified and new files only from dropbox with dropbox php sdk

I am using dropbox php sdk to search the files from dropbox with solr. everythig is ok but issue is while i am indexing the files into that it is fetching all the files wit get_files() function .but i want only the modified and new files. Is there…
john
  • 567
  • 8
  • 23
0
votes
1 answer

How to wait for DropBox download synchronization to be done?

iI need to ensure that DropBox cache (local files) is up to date with remote files stored on the Dropbox server. (My app needs to wait for local files being completely up to date, before reading them) I have searched the core api for clues on how to…
user315561
  • 651
  • 5
  • 18
0
votes
1 answer

Dropbox API logout url is not working properly

I am using php sdk provided by dropbox to import images from user's account after the authorization. All is working perfectly. But the logout url (Which I have created) is not working properly. Below is my code:
Ashish Shah
  • 152
  • 1
  • 3
  • 16
0
votes
0 answers

Listing files and directories returns mixed case sensitivity on the results. Is there a way to force case sensitive results?

I've created a folder structure as below, with some images in the subfolders. Test 1 Test 2.1 Test 2.1.1 Test 2.1.2 Test 2.2 When calling 'getMetadataWithChildren' I seem to be having mixed case results returned such…
Andrew Holt
  • 551
  • 3
  • 2
0
votes
1 answer

How to create folder on dropbox using php

I want to create the folder dynamically on dropbox and i am using the below code but it gives me error please help me function CreateFolder($path) { return $this->apiCall("fileops/create_folder", "POST", array('root'=> $this->rootPath, 'path' =>…
Jha
  • 23
  • 10
0
votes
1 answer

Can't get the Dropbox API PHP Tutorial to work

I am playing with the Dropbox api but can't get past the first step of making it work. Any help would be great! I did try to do a thorough search on Google for my problem with no luck. Tutorial Link ->…
0
votes
1 answer

JS Dropbox API Account Secret

I am using the Dropbox Core API for a web application. On my server, I want to have a profile for each user, that is linked with his Dropbox account. How can I ensure, that only this user has access to his information? Can I get some sort of a…
Christoph Bühler
  • 2,795
  • 2
  • 28
  • 43
0
votes
1 answer

Is it possible to have the dropbox api actually show the user, in the website, downloadable links to folders and files? or is this not possible?

Is it possible to have the dropbox api actually show the user, in the website, downloadable links to folders and files? or is this not possible? I would like to use the dropbox api to show the user a list of the folders and files and they can…
0
votes
2 answers

Problems implementing dropbox API into php

I am trying to create a page that will display the contents of a dropbox folder, in a presentable sandbox fashion, and allow the browsing user (who is logged into a website I have been developing) to be able to click and download the various files…
1 2 3
8 9