I am using facebook oauth with web authentication and extended permissions
My resulting authorization URL ends up like
https://graph.facebook.com/oauth/authorize?client_id={myAppId}&redirect_uri={my_redirect_uri}&scope=offline_access,read_stream,friends_activities,user_activities,user_photos,friends_photos,user_location,user_about_me,user_activities
This works fine in Mozilla and Chrome however IE cannot display the webpage.
however if i reduce the number of extended permissions to just offline_access,read_stream,friends_activities,user_activities it works fine in IE too.
I see that facebook redirects this above request to the login.php page for some reason if I have more than 6 permissions in the scope paramter It will not redirect in IE
Anyone sees this issue ?