我正在尝试使用dropbox api创建一个可共享的链接,但我使用的函数不会返回任何内容。
var ACCESS_TOKEN = "access_token";
var SHARED_LINK = "/example/example.doc";
var dbx = new Dropbox({ accessToken: ACCESS_TOKEN });
var x = dbx.SharingCreateSharedLink({path: SHARED_LINK});
alert(x);
答案 0 :(得分:0)
Dropbox JavaScript SDK以异步方式返回API调用结果,而不是方法调用的返回值。
您可以在此处分别使用then
和catch
查看如何设置结果和错误回调的示例:
https://github.com/dropbox/dropbox-sdk-js/blob/master/examples/javascript/basic/index.html#L54
因此,例如,您的代码应如下所示:
var ACCESS_TOKEN = "access_token";
var filePath = "/example/example.doc";
var dbx = new Dropbox({ accessToken: ACCESS_TOKEN });
dbx.sharingCreateSharedLinkWithSettings({path: filePath})
.then(function(response) {
console.log(response);
})
.catch(function(error) {
console.log(error);
});