twitter计数总是返回0?

时间:2012-11-08 10:15:43

标签: javascript jquery asp.net twitter

我正在制作自定义Twitter按钮和计数器。计数器总是返回0。

这是代码:

<a href="https://twitter.com/intent/user?screen_name=Aoraxous" target="_blank"
  data-url="http://www.twitter.com/aoraxous"
  data-via="AORAXOUS"
  data-text=""
  data-count="horizontal">Tweet                           
</a>

jquery的:

jQuery.getJSON(
    'ht' + 'tp://urls.api.twitter.com/1/urls/count.json?url=https://twitter.com/intent/user?screen_name=Aoraxous/&callback=?',
    function (data) {

        alert(data.count);
    }
);

任何想法我做错了什么?

1 个答案:

答案 0 :(得分:0)

它返回零计数因为您不允许从urls.api.twitter.com请求 - 它不是公共API。请参阅此主题Counting does not seem to work with other URL shortening servicesIs http://urls.api.twitter.com/1/urls/count.json? a valid way to get the tweet count for a URL?