Cordova / PhoneGap中的Dropbox.js身份验证

时间:2013-08-04 10:08:13

标签: javascript cordova oauth-2.0 dropbox-api

我正在Cordova / PhoneGap中编写一个应用程序,它试图使用Dropbox.js从Dropbox获取文件。 Cordova版本为3.0.1,Dropbox.js版本为0.10.0。我的Javascript在桌面浏览器上工作得很好:

var client = new Dropbox.Client({ key: "<my key>", secret: "<my secret>"} );
client.authenticate(function(error, client) {
...

但在Cordova打包的应用程序中,我收到一个错误:“您使用的应用程序似乎提交了一个错误的请求”。

我怀疑问题与在Cordova应用程序中解决此问题的redirect-url有关:

Dropbox.AuthDriver.BrowserBase.currentLocation()
-> file:///android_asset/www/index.html

以文件:///开头的网址无法与Dropbox API一起使用,即使我将它们添加到Dropbox API控制台中的OAuth重定向URI。

如果我之前知道了uid和令牌,那么Cordova应用程序可以正常工作:

var client = new Dropbox.Client({
    key: "<my key",
    secret: "<my secret>",
    token: "<token>",
    uid: "<uid>"
});
client.authenticate(function(error, client) {
...

这样我就能很好地阅读我的Dropbox文件。问题是令牌不会永远存在,我想从我的应用程序本身获取一个新令牌。

根据this discussion,此问题应该已在早期版本的dropbox.js(0.9.2)中得到解决。但我仍然遇到它。我想知道我是否应该使用API​​有点不同,但我不知道如何。

Dropbox.js添加了一个redirectUrl选项in this commit我只是不知道我应该在Cordova应用程序中放置什么。 file:///android_asset/www/index.html无效,因为Dropbox API不允许使用文件网址。

Simon McDonald对this question的回答可能有所帮助。但这意味着我必须拥有一个带有dropbox.js登录功能的外部服务器托管页面。或者我可以使用主Dropbox Web登录页面吗?

1 个答案:

答案 0 :(得分:5)

dropbox.js 0.10.1对Cordova有一些修复。

我们刚刚设置了一个页面,当file://不起作用时,您可以将其用作嵌入式WebView中的OAuth 2重定向URL。

https://www.dropbox.com/1/oauth2/redirect_receiver