I'm trying to post photo on the client wall, it works great through Firefox, but when I'm trying doing the same through Chrome (or Explorer), the first time I'm using the application and install it, I don't get a response at all... When I'm refreshing the page and try again, it works fine and post the photo...
This is the code I'm using:
var imgURL = obj.picture;
FB.api('/me/photos', 'post', {
message: obj.description,
access_token: accessToken,
url: imgURL
}, function (responsePhoto) {
if (!responsePhoto || responsePhoto.error) {
if (!responsePhoto){
console.log(responsePhoto);
alert('An error has occured: please refresh and try again');
}
else {
console.log(responsePhoto);
alert('An error has occured:' + responsePhoto.error + ' please refresh and try again');
}
} else {
//alert('your photo has been uploaded');//('Post ID: ' + responsePhoto.id);
}
});
Any ideas?
Thanks

console.log(responsePhoto)directly at the beginning of your callback function write out? And what doesconsole.log(accessToken)bring, and what does the debug tool say about this access token? – CBroe Aug 13 '12 at 12:28