如何使用dropbox-js在任意云平台上使用dropbox进行身份验证?

时间:2015-07-17 16:56:40

标签: node.js dropbox dropbox-js

我已使用dropbox-js在本地计算机上成功实现了Dropbox登录。

使用以下功能执行身份验证:

router.get('/dropbox', isAuthenticated, function(req, res, next) {
    var isLoggedIn = !!req.user;
    var dropboxClient = req.app.get('dropboxClient');


    dropboxClient.authenticate(function(error, client) {
        if (error) {

            console.log(error);
        }
        dropboxClient.readdir("/", function(error, entries) {
            if (error) {
                console.log(error);  // Something went wrong.
                return 0;
            }
            console.log(entries);
            var folders = getFolders(entries);
            console.log("Your Dropbox contains " + folders.join(", "));
            res.render('settings', { title: 'Express', loggedIn: isLoggedIn, folders: folders });
        });
    });
});

dropboxClient在app.js中定义如下:

var dropboxClient = new Dropbox.Client({
  key: dropboxConfig.dropbox.app_key,
  secret: dropboxConfig.dropbox.app_secret
});
dropboxClient.authDriver(new Dropbox.AuthDriver.NodeServer(8191));

以及Dropbox应用控制台中定义的OAuth 2重定向URI如下:

http://localhost:8912/oauth_callback

如上所述,当应用程序在本地运行时,一切正常,但是当我在云平台上传输它时,我得到响应502(错误的网关)。

我尝试添加OAuth2重定向URI myapp.evennode.com:8912/oauth_callback

但它不起作用。有没有人设法使用dropbox-js在任何云平台(heroku,evennode ...)上成功实现Dropbox身份验证?

我将不胜感激。

1 个答案:

答案 0 :(得分:-1)

Dropbox.AuthDriver.NodeServer用于测试目的......它侦听localhost并在本地计算机上打开浏览器(当在其他地方部署时肯定不会工作)。

如果您尝试在浏览器中进行身份验证,请参阅https://blogs.dropbox.com/developers/2013/12/writing-a-file-with-the-dropbox-javascript-sdk/了解使用dropbox.js的基本示例。

如果您需要在node.js中使用服务器端流程,dropbox.js将无法提供帮助。有关简单示例,请参阅https://github.com/smarx/othw/tree/master/Node.js