我正在使用Dropbox php SDK,我想知道有没有办法用任何php函数登出Dropbox帐户???
我正在使用此代码使用curl注销
function logout()
{
$ch = curl_init();
$url="https://www.dropbox.com/logout";
// set URL and other appropriate options
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HEADER, 0);
// grab URL and pass it to the browser
curl_exec($ch);
// close cURL resource, and free up system resources
curl_close($ch);
}
答案 0 :(得分:0)
这不能在服务器端实现,只要没有api存在。
试试这个:
<iframe src="https://www.dropbox.com/logout" style="display:hidden" />
如果您的问题与OAuth相关:
如果您需要OAuth请求,这将与您检查的部分相关。简单需要新的Authentification那里。
例如:简单地从持久性中移除您的令牌