I'm working facebook share photo using Phonegap and Javascript. I'm able to upload file to facebook, which is present in online using it's URL. but my requrirement is to upload photo which is present in my phones SDcard.
function uploadPhoto(){
// alert("Here");
var imgURL= $("#urlText").val();
alert(imgURL);
// var imgURL="http://thestylishdog.com/wp-content/uploads/2009/07/cute-dog2.jpg";
alert(imgURL);
FB.api('/photos', 'post', {
message: 'photo description',
access_token: access_token,
url: imgURL
}, function (response) {
if (!response || response.error) {
alert('Error occured:' + response);
} else {
alert('Post ID: ' + response.id);
}
});
}
this is my code to upload photo from Website.
Please let me know how can I upload photo from my android phone SDcard to facebook using javascript.
Thanks..