Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question
1  
Which version of IE? – tadman Feb 15 '12 at 16:56
1  
I've tested it using IE9 – Tony Serino Feb 15 '12 at 17:30

1 Answer

You could try to encode the url you are passing using either of the 3 javascript encoding methods:

encodeURIComponent(url)
/* or */
encodeURI(url)
/* or */
escape(url)

References:
encode comparisons
encodeURIComponent on MDN

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.