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 use the "Simple" example of the FB connect plugin with phonegap 1.4.1. I can login. But I can't post a feed with

function facebookWallPost() {
                console.log('Debug 1');
                var params = {
                    method: 'feed',
                    name: 'Facebook Dialogs',
                    link: 'https://developers.facebook.com/docs/reference/dialogs/',
                    picture: 'http://fbrell.com/f8.jpg',
                    caption: 'Reference Documentation',
                    description: 'Dialogs provide a simple, consistent interface for applications to interface with users.'
                  };
                console.log(params);
                FB.ui(params, function(obj) { console.log(obj);});
            }

No dialogbox appears to confirm the post as it exists for webapp.

I have existed application in phonegap 1.4.1 which upload different data to external web server, I need to enhance it with function to share this data (text + image) to Facebook. I integrated Facebook connect plugin to this application with a support to phonegap 1.4.1. The only functions that work are login and logout. Posting to the wall doesn`t work (code is above). But the same function facebookWallPost() works in facebook plugin for cordova 1.9.0. What is the problem?

share|improve this question
Hi, welcome to Stack Overflow! Please enhance your question, it is not very clear. You should see the stackoverflow.com/faq#howtoask about asking questions. – Dennis Haarbrink Oct 31 '12 at 15:00

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.