Missing URL parameters in Internet Explorer

I followed the tutorial here to get access tokens to access Facebook from a web browser. Basically, this tutorial instructs people to get the url in the form

http://www.facebook.com/dialog/oauth/?
    client_id=YOUR_APP_ID
    &redirect_uri=YOUR_REDIRECT_URL
    &state=YOUR_STATE_VALUE
    &scope=COMMA_SEPARATED_LIST_OF_PERMISSION_NAMES

      

The user then enters the dialogue. The web browser will then go to redirect_uri followed by the access time and expiration time as

YOUR_REDIRECT_URI#
    access_token=USER_ACCESS_TOKEN
   &expires_in=NUMBER_OF_SECONDS_UNTIL_TOKEN_EXPIRES

      

It worked fine with Chrome and Firefox. But IE won't show the access token after the redirect_uri. It doesn't actually show any parameters in the returned url. I've tried IE on two different computers, with the same problem.

Does anyone know why the problem is occurring and how to fix it? Any help is greatly appreciated!

+3


source to share





All Articles