嘿我正在使用dropboxuploader.php登录dropbox。一切都很好,但是当我昨天上班时,我再也无法联系了。这就是Dropbox回归给我的。
HTTP/1.1 100 Continue
HTTP/1.1 403 Forbidden
Server: nginx/1.2.3
Date: Thu, 04 Oct 2012 08:44:36 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: keep-alive
看来你试图做一些我们无法验证的事情。您是否在其他窗口中登录了其他Dropbox帐户?尝试点击<a href="#" onclick="history.go(-1); return false;">here</a>
返回您来自的页面,或者转到<a href="/home">home</a>.
答案 0 :(得分:1)
用以下代码替换登录功能,它应该有效:
protected function login() {
$data = $this->request('https://www.dropbox.com/login');
$str = '<input type="hidden" name="t" value="';
$start = strpos($data,$str);
$val = "";
if($start !== false)
{
$val = substr($data,$start+strlen($str),24);
}
$data = $this->request('https://www.dropbox.com/login', true, array('login_email'=>$this->email, 'login_password'=>$this->password, 't'=>$val));
if (stripos($data, 'location: /home') === false)
throw new Exception('Login unsuccessful.');
$this->loggedIn = true;
}
答案 1 :(得分:0)
只需更新您的Dropbox上传器文件,然后执行修复。