2013年3月9日星期六

修复dabr登录时页面不存在的错误

登录奶瓶腿、大波时,出现无法登录推特的情况,错误信息为:
 
404: {"errors":[{"message":"Sorry, that page does not exist","code":34}]}
 
出现问题的原因并不是因为oauth代理(比如itap),而是因为之前一直用version 0的api登录
 
解决方法
 
打开common/user.php,把下面一行:
 
$user = twitter_process('https://api.twitter.com/account/verify_credentials.json');
 
修改为:
 
$user = twitter_process('https://api.twitter.com/1.1/account/verify_credentials.json');
 

没有评论: