ユーザーにTwitterにログインしてステータスを投稿させ、その後自動的にログアウトさせる必要があります。
Twitter APIを調べましたが、何も見つかりませんでした。
現在のコード:
twttr.ready(function (twttr) {
twttr.events.bind('tweet', function(event) {
if(!code){
jQuery('#voucher-container').show();
var data = {sessionId: sessionId, type: 'twitter'};
jQuery.post('checkTweet.php', data, function(response){
response = jQuery.parseJSON(response);
if(response.error){
alert(response.error);
}
else{
window.location.href = 'stage3.php';
}
});
code = true;
}
});
});
どんな助けでも大歓迎です。ありがとう。