我使用Dropbox JavaScript SDK并对用户进行身份验证,因此我获得了一个oauth令牌。问题是,当使用client.authenticate()
时,用户会被重定向到Dropbox而不是弹出窗口。如何改为弹出窗口呢?
答案 0 :(得分:1)
请参阅https://github.com/dropbox/dropbox-js/blob/stable/guides/builtin_drivers.md。
client.authDriver(new Dropbox.AuthDriver.Popup({
receiverUrl: "https://url.to/oauth_receiver.html"}));
并在你的oauth_receiver.html中运行:
Dropbox.AuthDriver.Popup.oauthReceiver();