Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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..

share|improve this question
[Upload photo on facebook][1] try this for uploadin an image on facebook. [1]: stackoverflow.com/questions/4264599/… – Khanji Abdulqadir Dec 18 '12 at 12:49

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.