我有JQuery Twitter api插件,我经常在站点之间使用(from here)。我最近在新网站上安装了它,但现在得到401错误:
Failed to load resource: the server responded with a status of 401 (Unauthorized)
jsonp1342737708184({"error":"This method requires authentication.","request":"\/1\/statuses\/user_timeline.json\/?callback=jsonp1342737708184&include_rts=true&count=3&include_entities=true"})
错误引用的行如下所示:
at: function(tweet) {
return tweet.replace(/\B[@@]([a-zA-Z0-9_]{1,20})/g, function(m, username) {
return '<a target="_blank" class="twtr-atreply" href="http://twitter.com/intent/user?screen_name=' + username + '">@' + username + '</a>';
});
},
我认为这需要进行OAuth身份验证,但我不确定如何更新我的脚本。
之前有没有人遇到过这个问题?
答案 0 :(得分:0)
发现问题:我没有配置我的脚本来正确处理用户名。正如您在错误中看到的那样,没有用户名。我的用户名var中有错误。
谢谢!