无法在Windows phone 8.1中插入Dropbox

本文关键字:插入 Dropbox phone Windows | 更新日期: 2023-09-27 18:29:24

我正在尝试在我的应用程序中插入投递箱。由于Dropbox没有为windowsphone或.net提供anhy-api,所以我选择了springframeworkThirdpartyneneneba api。

根据文件

string consumerKey = "..."; // The application's consumer key
string consumerSecret = "..."; // The application's consumer secret
string accessToken = "..."; // The access token granted after OAuth authorization
string accessTokenSecret = "..."; // The access token secret granted after OAuth authorization
IDropbox dropbox = new DropboxTemplate(consumerKey, consumerSecret, accessToken, accessTokenSecret, AccessLevel.Full);

DropBoxTemplate()=>

IDropbox dropbox = new DropboxTemplate(consumerKey, consumerSecret, accessToken, accessTokenSecret, AccessLevel.Full);

将以下内容作为参数:

consumerKey     //i am asuming it is appKey
consumerSecret //i am asuming it is appSectret

当我在dropbox.developer网站中创建应用程序时,我知道这两个

but i dont Know the other two  ,that is  :
accessToken          //Generated on call of access_Token_Request   i guess
accessTokenSecret   //Generated on call of access_Token_Secret_Request   i guess

我的问题是如何在Windows Phone 中的C#中为其中两个(accessToken&accessTokenSecret)变量获取/分配值

无法在Windows phone 8.1中插入Dropbox

accessTokenaccessTokenSecret是您可以在此处获取的应用程序范围的值。CCD_ 3和CCD_。