我想在Twitter上分享我的应用图片。 我想使用Javascript和php以及具有回调函数的Twitter Api来发布带有文本的图片。 我怎么能这样做?
我试过了
<script type="text/javascript" src="jquery.twitterbutton.js"></script>
<script type="text/javascript">
$(document).ready(function () {
$('#twitterbutton-example').twitterbutton({
user: 'POSimplicity',
title: ' powered by POSimplicity',
count_url: false,
user_description: 'user description',
url: 'http://www.abc.in/index.php',
ontweet: function (response) {
var id = $("p").html();
$.ajax({
url: 'add_customer.php',
data: 'twitpoints=' + '<?php echo $res['
0 ']['
regpoints ']; ?>' + '&total_points=' + '30' + '&customer_id=' + id,
dataType: 'html',
success: function (res) {
alert(res);
}
});
},
lang: 'en'
});
});
</script>
在此我可以发布推文网址而不是图片。
答案 0 :(得分:2)
您应该尝试使用这个Twitter API上传带有推文的图片:https://dev.twitter.com/docs/api/1/post/statuses/update_with_media
更新链接: https://dev.twitter.com/rest/reference/post/statuses/update