I'm using the facebook API to write to a fan page. I first connect to my facebook application.
Then on behalf the app I post something in a fan page. Everything works fine. I receive the id of the post but when I check the fan page I can't see anything. The post doesn't exist.
My facebook application uses extended permissions "manage_pages" "publish_stream".
Any help would really be appreciated. Leon
Here are the scriptlets that I use :
(function(d){
var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
if (d.getElementById(id)) {return;}
js = d.createElement('script'); js.id = id; js.async = true;
js.src = "//connect.facebook.net/en_US/all.js";
ref.parentNode.insertBefore(js, ref);
}(document));
window.fbAsyncInit = function() {
FB.init({
appId : '422979991051096', // App ID
channelUrl : '//www.mediapixar.com/facebook/FBchannel.html',
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true // parse XFBML
});
document.getElementById('auth-loginlink').addEventListener('click', function(){
FB.login(function(response) {
if (response.authResponse) {
chgStatus('conectado');
} else {
chgStatus('desconectado');
}
});
});
function postToTheFanPage(){
var user_id = "102993286461109";
var data = {
link: 'http://www.sinbaches.com/',
picture: 'http://www.mediapixar.com/Bache/MiniturasBlack.aspx?src=Upclien_932012193.jpg&Wit=240&Hei=180',
name: 'SinBaches.com',
caption: 'test insert a new bache from sinbachesmobile',
description: 'Sierra madre, 55, lomas de chapultepec...',
message: 'this is a test'
};
//inner function to get the response
function callback(response) {
if (!response || response.error) {
alert(response.error);
} else {
alert('Post ID: ' + response.id);
//I receive something like 102993286461109_356892137737888
}
}
FB.api("/" + user_id + "/feed", "post", data,callback);
}