17

我正在从 heroku 运行基于 nodejs + express 的 api 服务器并使用dropbox-js库。这是我想做的:

  1. 用户点击特定的 api 端点并启动该过程。
  2. 通过节点进程生成一些文本文件并保存在服务器上
  3. 使用我自己的凭据(用户和 Dropbox 应用程序)将这些文件传输到我拥有的 Dropbox。

永远不会有随机用户需要这样做的情况。这是一个团队帐户,这是一个内部工具。

让我绊倒的部分是保管箱想要打开一个浏览器窗口并获得我的许可以连接到该应用程序。问题是,当进程在 heroku 实例上运行时,我显然无法单击按钮。

我有什么办法可以完全在节点中授权访问该应用程序?

我觉得我可能会使用 phantomJS 进程来单击按钮 - 但它似乎太复杂了,如果可能的话我想避免它。

这是我的验证码:

    // Libraries
    var Dropbox         = require('dropbox');

    var DROPBOX_APP_KEY    = "key";
    var DROPBOX_APP_SECRET = "secret";

    var dbClient = new Dropbox.Client({
      key: DROPBOX_APP_KEY, secret: DROPBOX_APP_SECRET, sandbox: false
    });

    dbClient.authDriver(new Dropbox.Drivers.NodeServer(8191));

    dbClient.authenticate(function(error, client) {
      if (error) {
        console.log("Some shit happened trying to authenticate with dropbox");
        console.log(error);
        return;
      }


      client.writeFile("test.txt", "sometext", function (error, stat) {
        if (error) {
          console.log(error);
          return;
        }

        console.log("file saved!");
        console.log(stat);
      });
    });
4

2 回答 2

19

花了我一些测试,但这是可能的。

首先,您需要通过浏览器进行身份验证,并保存 Dropbox 返回的令牌和令牌机密:

dbClient.authenticate(function(error, client) {
  console.log('connected...');
  console.log('token ', client.oauth.token);       // THE_TOKEN
  console.log('secret', client.oauth.tokenSecret); // THE_TOKEN_SECRET
  ...
});

获得令牌和秘密后,您可以在Dropbox.Client构造函数中使用它们:

var dbClient = new Dropbox.Client({
  key         : DROPBOX_APP_KEY,
  secret      : DROPBOX_APP_SECRET,
  sandbox     : false,
  token       : THE_TOKEN,
  tokenSecret : THE_TOKEN_SECRET
});

之后,您将不再为必须通过浏览器进行身份验证而烦恼(或者至少直到有人在没有令牌和密钥的情况下再次运行代码之前,这将使 Dropbox 生成一个新的令牌/密钥对并使旧的无效或应用程序凭据被吊销)。

于 2013-05-02T10:47:58.690 回答
9

或者您可以只使用隐式授权并获取 oauth 令牌。

        var client = new Dropbox.Client({
            key: "xxxxx",
            secret: "xxxxx",
            token:"asssdsadadsadasdasdasdasdaddadadadsdsa", //got from implicit grant
            sandbox:false
        });

根本不需要访问浏览器。不再需要此行!

   client.authDriver(new Dropbox.AuthDriver.NodeServer(8191));
于 2014-11-05T07:36:34.803 回答