This is the FB Url I am trying to access.
https://graph.facebook.com/oauth/authorize?client_id=694aa71aed60fb9d79aae04b81ff27c8&redirect_uri=http://localhost/TestConnect/Facebook.aspx&scope=email,user_about_me,user_interests,user_likes,user_location,user_notes,user_education_hi
It says
The page cannot be displayed
There are too many people accessing the Web site at this time.
It was working fine until last night
Even when I type it in the browser, it has no response. All it shows me is a green progress bar even after 20min
What should I do?
Thanks
SC
Here is your URL :
When changing
redirect_uritohttp://localhostit works fine for me. So I guess it is your pagehttp://localhost/TestConnect/Facebook.aspxthat does not works fine.The
redirect_uriwill be called with GET parameters, be sure to handle them correctly :If the user allows your app, he will be redirected to :
and you will need to get a ask an access token to facebook with that code (the
codeparameter) by calling :If the user doesn’t allow your app, he will be redirected to :
so you can detect that error by testing the get parameter
error.Hope that helps !