My requirement is to post a photo to the Facebook using the Javascript SDK. I am facing the following issues:
Firstly,
FB.login(function (response) {
if (response.authResponse) {
var access_token = response.session.access_token;
alert(access_token);
} else {
alert('User is logged out
}
}, true);
Every time i try to execute this piece of code I get authResponse:null, status:"unknown".
Secondly. I have registered my app with Facebook and can generate access token manually whenever I need one. Using the same access token, when I try to post a photo as follows:
var imgURL="http://www.photographyblogger.net/wp-content/uploads/2010/05/flower29.jpg";
FB.api('/photos', 'post', {
message: 'photo description',
access_token: 'MY_ACCESS_TOKEN',
url: imgURL
}, function (response) {
if (!response || response.error) {
alert('Error occured:' + response.error.message);
} else {
alert('Post ID: ' + response.id);
}
});
I get an alert "Post ID: 'SOME_VALUE'". But the photo doesn't get posted at all on my wall. Please help guys as it is an urgent work that I need to finish ASAP. Thanks!