Nagaraj .
Nagaraj .

Reputation: 455

DropBox Core API in C#/Xamarin

I'm making a mobile application for iPhone using Xamarin where I want my user to authorize them to DropBox folder. I learned that there are several C# libraries used for DropBox integration. But everything (DropNet, DropboxRestAPI etc) seems to have been built for integrating into the web applications and not in the mobile applications. Here is what I'm trying to achieve. 1. Authorize DropBox using the dropbox application installed on the phone and not by launching the browser in the mobile app 2. Get the request token 3. Exchange the request token into access token

The components available for xamarin are built on sync API. Is there any dropbox core API available in C# for achieving the above said?

Upvotes: 0

Views: 1245

Answers (2)

Jan Zeman
Jan Zeman

Reputation: 994

Core API is available by now on Xamarin. Xamarin iOS since July 2015, Xamarin Droid since January 2016.

Upvotes: 1

Jamie Keeling
Jamie Keeling

Reputation: 9966

Xamarin have their own component for Dropbox, however this makes use of the Sync API which has since been deprecated in favor of their updated Core API.

Based on their documentation it states that applications using the Sync API will continue to work as that is built on top of the Core API, however Dropbox will no longer distribute further updates for it.

It is strongly recommended that you move to adopt the Core API, however looking at their documentation page there doesn't appear to be a specific SDK for C#/Xamarin at this time.

Upvotes: 0

Related Questions