Reputation: 105
I am trying to share my Facebook Canvas app and for some reason the request dialog works in Chrome and Firefox but not in IE. Here is my code:
FB.init({
appId: 'MyAPPID',
status: true,
cookie: true,
oauth: true
});
function inviteFriends() {
FB.ui({method: 'apprequests',
message: 'MY MESSAGE',
title:'MY TITLE'
}, requestCallback);
}
function requestCallback(response) {
// Handle callback here
}
As it is only not working in IE i would assume it to be a formatting problem but it seems fine.
Upvotes: 1
Views: 581
Reputation: 31870
It's probably a cookie and/or P3P issue with IE. To fix the P3P issue, you will need to add a p3p header to each response from the webserver. See:
http://www.webmasterworld.com/apache/3285406.htm
http://www.hanselman.com/blog/TheImportanceOfP3PAndACompactPrivacyPolicy.aspx
Upvotes: 1