h1pm0n
h1pm0n

Reputation: 105

Facebook Request Dialog Working in Chrome but not IE

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

Answers (1)

DMCS
DMCS

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://evolt.org/node/20756

http://www.webmasterworld.com/apache/3285406.htm

http://www.hanselman.com/blog/TheImportanceOfP3PAndACompactPrivacyPolicy.aspx

Upvotes: 1

Related Questions