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?