dropbox

Eclipse Kepler crashes in a certain workspace

巧了我就是萌 提交于 2020-01-06 12:52:54
问题 I have a Dropbox workspace, and recently(this has never happened before), I came home(I edited some code at school also in the Dropbox workspace), and now Eclipse crashes everytime I use that workspace, but not any of my other workspaces. I have reinstalled Eclipse and tried to allocate from 512mb to 2gigs of RAM but nothing has happened. I've trimmed down the error code b/c it's over 52,000 characters long. Command-line arguments: -os win32 -ws win32 -arch x86_64 -product org.eclipse.epp

Using Dropbox access token from multiple devices

你。 提交于 2020-01-06 10:22:40
问题 Today - Users' Dropbpox access tokens - which are obtained when a user authenticates the app - are kept in my backend , linked to the authenticated user. So when a user authenticates once from any platform - he will have the same Dropbox access from any other platform or device he uses, since the access token are kept in the backend. We want to allow each client to use the Dropbox SDK in order to communicate directly with Dropbox services where it seems fit, requiring the clients hold an use

Using Dropbox access token from multiple devices

喜欢而已 提交于 2020-01-06 10:21:02
问题 Today - Users' Dropbpox access tokens - which are obtained when a user authenticates the app - are kept in my backend , linked to the authenticated user. So when a user authenticates once from any platform - he will have the same Dropbox access from any other platform or device he uses, since the access token are kept in the backend. We want to allow each client to use the Dropbox SDK in order to communicate directly with Dropbox services where it seems fit, requiring the clients hold an use

Error using OAuth2 to connect to dropbox in Python

这一生的挚爱 提交于 2020-01-06 01:33:11
问题 On my Raspberry Pi running raspbian jessie I tried to go through the OAuth2 flow to connect a program to my dropbox using the dropbox SDK for Python which I installed via pip. For a test, I copied the code from the documentation (and defined the app-key and secret, of course): from dropbox import DropboxOAuth2FlowNoRedirect auth_flow = DropboxOAuth2FlowNoRedirect(APP_KEY, APP_SECRET) authorize_url = auth_flow.start() print "1. Go to: " + authorize_url print "2. Click \"Allow\" (you might have

R Dropbox File Download

ⅰ亾dé卋堺 提交于 2020-01-05 09:53:55
问题 I have a dropbox link that was shared to me to download but unlike other link, its says I am forbidden to download it. My functions: source_DropboxData <- function(file, key, sha1 = NULL, sep = ",", header = TRUE){ URL <- paste0('https://dl.dropboxusercontent.com/s/', key, '/', file) stopifnot(is.character(URL), length(URL) == 1) temp_file <- tempfile() on.exit(unlink(temp_file)) request <- GET(URL) stop_for_status(request) writeBin(content(request, type = "raw"), temp_file) file_sha1 <-

Android + DropboxSync startLink

跟風遠走 提交于 2020-01-05 07:46:13
问题 I want create app with sync to dropbox, but i have an error. Who can help fix error: 253-253/com.shvedchenko.skleroshop W/com.dropbox.client2.android.AuthActivity: There are multiple apps registered for the AuthActivity URI scheme (db-aaat0ujhbfgnn98). Another app may be trying to impersonate this app, so authentication will be disabled. i have this error when i call: mDbxAcctMgr.startLink((Activity)this, REQUEST_LINK_TO_DBX); My AndroidManifest: <activity android:name="com.dropbox.sync

com.dropbox.client2.exception.DropboxUnlinkedException

99封情书 提交于 2020-01-04 18:34:11
问题 I want to send text file to dropbox but it is showing DropboxUnlinkedException . Solution :: First, let your program get fully authenticated. Just after mDBApi.getSession.startAuthentication() method, onResume method will get called automatically. Let the full authentication get completed and then do what do you want to do. MainActivity public class MainActivity extends Activity implements LocationListener{ TextView date; TextView lati; TextView longi; Button b1; private DropboxAPI

Choosing cloud storage service with web API can FTP third party server [closed]

点点圈 提交于 2020-01-04 14:01:22
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 8 years ago . I need to find a storage service that can programatically (REST API) send (FTP) a file to a third party service. I was thinking of using Amazon S3, but I found a previous similar question here: Sending file from S3 to third party FTP server using CloudFront and apparently it cant be done. What I want to avoid is

How to delete files from Dropbox with PHP api

孤街醉人 提交于 2020-01-04 05:36:15
问题 First of all, I can properly upload and download files from Dropbox with the PHP api. This is how I upload files: // Upload files $file = fopen("default.png", "rb"); $size = filesize("default.png"); $client->uploadFile("/default.png", Dropbox\WriteMode::add(), $file, $size); This is how I download files: // Download Files $client->getFile("/default.png", fopen("default.png", "wb")); Is there a api call to delete files from within the folder your app created. For example, my app creates a

How to list all files and folders in my dropbox using v2 api

可紊 提交于 2020-01-03 18:59:10
问题 I am using Python SDK and would like to retrieve all of my dropbox files and folders. I am using v2 of Python SDK of Dropbox. dbx = Dropbox("DROBOX_ACCESS_TOKEN") response = dbx.files_list_folder("/Apps/Marketing") for file in response.entries: print file.name However, I get an error: dropbox.exceptions.ApiError: ApiError('b0479a07aaa5a9b405862ae75cbf135d', ListFolderError(u'path', LookupError(u'not_found', None))) While Apps folder exists in Dropbox when I login (prob in root folder) When I