I have 2 applications set up on facebook. One for development/testing and one for production. With Firefox I can connect to both of them but with IE8 I can connect only to the development app. When I try to connect to the production app, after entering the credentials, I get the following error message:
An error occurred with MyApp. Please try again later.
The site URL of my development app is http://localhost:8080/test/ and the domain is blank.
The site URL of my production app is http://www.myapp.com. and the domain is myapp.com
The FB.init method looks like this:
FB.init({
appId: '${fbApplicationId}',
status: true,
cookie: true,
xfbml: true,
channelUrl: 'http://myapp.com/xd_receiver.jsp'
});
Can anyone help me with this?