0

我有 JQuery Twitter api 插件,我经常从一个站点到另一个站点(从这里)使用。我最近在一个新站点上安装了它,但现在收到 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 身份验证有关,但我不确定如何更新我的脚本。

有没有人遇到过这个问题?

4

1 回答 1

0

发现问题:我没有配置我的脚本来正确处理用户名。正如您在错误中看到的那样,不存在用户名。我的用户名 var 有一个错误。

谢谢!

于 2012-07-20T00:01:26.817 回答