我的问题是我想使用offline_access发布到用户墙。
我不知道如何使用facebook javascript sdk
使用此方法FB.api('/ me / feed')
还请举例说明如何将facebook connect与asp
集成答案 0 :(得分:0)
如果用户已经过身份验证并且已授予publish_stream或offline_access权限,则您只需调用此方法即可发布到其Feed:
var body = 'Reading Connect JS documentation';
FB.api('/me/feed', 'post', { message: body }, function(response) {
if (!response || response.error) {
alert('Error occured');
} else {
alert('Post ID: ' + response.id);
}
});