我在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/:id 和 https://dev.twitter.com/docs/api/1/post/favorites/create/:id
那么我的转推和喜爱的功能应包含哪些内容? 请帮忙。