I have an iOS app which I am trying to connect to Facebook (Although I do not want to use their SDK kit for other reasons). Following their OAuth login instructions here, I am calling the URL (inside a UIWebView):
https://m.facebook.com/dialog/oauth?client_id=<APP_ID>&redirect_uri=https%3A%2F%2Fwww.facebook.com%2Fconnect%2Flogin_success.html&response_type=token&scope=email%2Cpublish_stream%2Cuser_birthday%2Cuser_checkins%2Coffline_access
This brings me to a login page as expected, but when I enter my credentials, it redirects to the URL:
https://m.facebook.com/dialog/permissions.request?_path=permissions.request&app_id=<APP_ID>&redirect_uri=https%3A%2F%2Fwww.facebook.com%2Fconnect%2Flogin_success.html&display=touch&response_type=token&perms=email%2Cpublish_stream%2Cuser_birthday%2Cuser_checkins%2Coffline_access&fbconnect=1&from_login=1&client_id=156125581079932&refid=9&_rdr
And it states the page cannot be found?!?! This is repeatable when I directly call the login url inside a desktop web browser as well.
Has anyone seen anything like this?
The querystring parameters I'm submitting the request with look fine to me.
I'm lost here. :-//