我需要創建一個按鈕以在Face Book牆上提交評論。Sencha Touch和Facebook按鈕
我在煎茶觸摸,並在我的控制器使用MVC我使用函數作爲
facebookComment: function()
{
--------
}
此功能是當按下一個按鈕來調用。 任何機構都可以拋出一些關於如何去做這件事?
我需要創建一個按鈕以在Face Book牆上提交評論。Sencha Touch和Facebook按鈕
我在煎茶觸摸,並在我的控制器使用MVC我使用函數作爲
facebookComment: function()
{
--------
}
此功能是當按下一個按鈕來調用。 任何機構都可以拋出一些關於如何去做這件事?
我使用下面的代碼張貼在留言板看它是否對你有用與否
var postParams = {
method: 'stream.publish'
, target_id: friend_id
, display: 'popup'
, message: message
, user_message_prompt: "Post message!"
}
FB.api(postParams, function(response) {
if(response.error_code || !response) {
to handle error
}
});
或參閱此鏈接https://developers.facebook.com/docs/reference/rest/stream.publish/
哦,首先你應該已經使用Javascript SDK。
var body = comment_var;
FB.api('/me/feed', 'post', { message: body }, function(response) {
if (!response || response.error) {
alert('Error occured');
} else {
alert('Post ID: ' + response.id);
}
});
顯然,應該照顧的用戶登錄狀態(也許使用方法:然後,只需使用FB.api()
方法與message
字段設置爲您的評論發出HTTP POST
請求,當前用戶的feed
連接FB.getLoginStatus()
)。