I'm using the following code to redirect a user from the "Add Tab to Page" popup to their facebook page.
function addToPage() {
// calling the API ...
FB.ui(
{
method: 'pagetab'
},
function(response) {
if (response != null && response.tabs_added != null) {
$.each(response.tabs_added, function(pageid) {
window.location = 'http://www.facebook.com/pages/abc-123/' + pageid + '/?sk=app_251008564974830';
});
}
}
);
}
The code works in all browsers but IE, which gives me the following error:
API Error Code: 100 API Error Description: Invalid parameter Error Message: redirect_uri URL is not properly formatted
I need the page to redirect to their Facebook page, not my app. If I put a redirect_uri in then it redirects to the app, which is not the functionality I am looking for.
Thanks