0

我在 javascript/jquery 中编写了一个代码,该代码用特定句柄的推文填充了一个部门。

$.getJSON("http://api.twitter.com/1/statuses/user_timeline.json?screen_name="+ handle + "&count=" + noOfTweets + "&include_rts=true&callback=?", function(data) {
    //some code
});

这是显示推文的代码

Json.parse(data);
$.each(data, function(i, tweet) {
  var buttonString = '<br/><a onclick="retweet('+tweet.id+')">Retweet</a>'
                            +'<a onclick="favorite('+tweet.id+')">Favorite</a>';

  $("#tweets").append($("<li/>").html(tweet.text+" <span class='tweetTime'>--a moment ago.</span>")+buttonString);
}

我现在想在推文中添加转发和收藏按钮。上述函数的 twitter api 需要一个 post 请求,但 jquery 没有任何 .postJSON() 函数 https://dev.twitter.com/docs/api/1/post/statuses/retweet/:idhttps ://dev.twitter.com/docs/api/1/post/favorites/create/:id

那么我的转发和收藏功能应该包含什么?请帮忙。

4

2 回答 2

0

改为使用网络意图。不是最好的,但也不错。

于 2012-05-18T20:03:06.637 回答
0

jQuery 具有发出 POST 请求的功能 - jQuery.post()

于 2012-05-18T20:27:00.160 回答