1

我已将 Dropbox 选择器添加到我的应用中,如下所示:

<script type="text/javascript" src="js/dropins.js" id="dropboxjs" data-app-key="my app key is here"></script>

$('#dropbox-choose').on('touchend', function(){
    Dropbox.choose({
        success: function(file){
            console.log("Here's the file link:" + file[0].link)
        },
        cancel: function() {

        },
        linkType: "direct",
        multiselect: false,
        extensions: ['.pdf', '.doc', '.docx' , '.txt' , '.rtf' ,'.wps' , '.odt']
    });
})

它会加载选择器,但我每次都会收到“错误”:“无效来源”

有任何想法吗?

4

1 回答 1

0

您的应用程序在本地运行,因此这是一个安全问题。我建议您在自己的服务器上托管此集成,将该服务器添加到 Dropbox 中允许的域,然后打开该服务器页面以处理集成。

于 2013-12-06T12:28:54.920 回答