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.

I have an application that opens this URL in a pop-up window (sensitive values removed).

https://www.facebook.com/login.php?api_key=my_key&cancel_url=my_url&display=popup&fbconnect=1&next=my_other_url&return_session=1&session_version=3&v=1.0&req_perms=read_stream%2Cpublish_actions%2Cpublish_stream%2Coffline_access%2Cmanage_pages%2Cread_stream%2Cemail%2Cread_insights

It worked a couple of weeks ago. Now, if the user is logged in to FB, they are just redirected to the FB home page. If they are logged out, FB prompts for a login, but then they see a page that says there was an error with my application.

I'm not sure what changed to make this quit working.

share|improve this question
Is the app in sandbox mode or disabled? – Jimmy Sawczuk Nov 8 '12 at 21:14
I just double-checked and the app is not in sandbox mode. – aezell Nov 8 '12 at 21:17

1 Answer

up vote 1 down vote accepted

The old, non OAuth endpoints such as login.php were deprecated recently. If you are using the php sdk, you will have to upgrade to the newest version which supports OAuth. Otherwise, take a look at the web getting started guide for more info - https://developers.facebook.com/docs/guides/web/

share|improve this answer
I was afraid of this. Ugh. Thanks! – aezell Nov 8 '12 at 21:38

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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