I am working on a HTML5 mobile app, using cordova 2.6, and I am targetting iOS, Android BlackBerry and Windows Phone.
I am trying to implement Facebook sharing feature using Facebook JavaScript SDK. I am trying to do it inside Corodova InAppBrowser
My FB.init function is as following:
FB.init({
appId : '0000000000',
channelUrl : './js/libs/fb/channel.html',
status : true
});
I am having the error :
Is there anything wrong with my Facebook app configuration, or my FB.init function?