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.

When attempting to call getLoginStatusURL(). I get the message:

Please migrate to OAuth2 and use the new /dialog/oauth endpoint. extern/login_status.php is no longer available.
share|improve this question

closed as not a real question by Mathieu Imbert, Tonny Madsen, finnw, andrewsi, Mac Nov 21 '12 at 22:22

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

The getLoginStatusUrl method in the SDK has not been kept up-to-date with the rest of the platform (the SDK actually doesn't know how to handle the response), and unfortunately, it was referring to a url deprecated a long time ago.

What you want instead, is to use the getLoginUrl method and pass in array('display' => 'none') - this will give you the expected result.

$url = $facebook->getLoginUrl(array('display' => 'none'));
share|improve this answer
I'm not able to get the expected result from this. getLoginStatusUrl was acting like a redirect hub. you gave it 3 params (aside from api_key & session_version) that would redirect to the given url depending on the results. no_session = redirect_url no_user = redirect_url2 ok_session = redirect_url3 so without the user seeing any login or allow screen, I was able to direct the user to where they needed to be depending on what state they were in. getLoginUrl only gives me the url to dialog/oauth which displays auth to the user before proceeding to the single redirect_uri that is defined. – Sheac Nov 9 '12 at 22:23
@Sheac, the params you mention were part of the pre-oauth flows and has been deprecated. – Sean Kinsey Nov 10 '12 at 0:26

You need to ensure that your app is set to pick up the code parameter from the Query String rather than the uri_fragment - this can be set on facebook apps page apps>settings>permissions.

That did it for me using $facebook->getLoginUrl() to provide the login URL

share|improve this answer
Stating that you have the same issue is not an answer, this should be added (if possible) as comment to original question. – Darvex Oct 25 '12 at 14:23
I dont seem to have an opportunity to comment on the original question so had no alternative - i can comment on your comment though – Stephen Creasey Oct 25 '12 at 14:52
Well, my suggestion would be removing this answer completely, or you risk getting down-voted more – Darvex Oct 25 '12 at 14:58
Updated to actually answer the question now – Stephen Creasey Oct 25 '12 at 16:17

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