Facebook authorization problem - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T20:35:42Z http://stackoverflow.com/feeds/question/484550 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/484550/facebook-authorization-problem 1 Facebook authorization problem Peter Bailey 2009-01-27T18:14:05Z 2009-01-27T20:55:26Z <p>I'm working on a facebook app and there's something I'm just not understanding about how their authorization system works.</p> <p>Our basic setup is this</p> <p>canvas URL = domain.com/facebook</p> <p>This is a simple page with an FBML Iframe element that points to domain.com/facebook/app which is an HTML page that serves up a Flash Application. </p> <p>The Flash Application requests additional data from our application server - some of those requests ask for facebook data (such as a list of friend IDs).</p> <p>So Flash then makes a request to domain.com/resources/facebook/friends - this is a PHP page which creates a Facebook instance (their PHP library) and performs the necessary call to their API and returns the data.</p> <p>However, the request to this URL (by flash) doesn't validate, so it is then redirected to their login when then itself redirects back my canvas URL with two parameters - <strong>auth_token</strong> and <strong>next</strong>. So the request is valid, but the redirect breaks the flash call.</p> <p>So, I'm trying to figure out how to make these other API calls (when themselves mace facebook API calls) be facebook-vaildated from the get-go.</p> http://stackoverflow.com/questions/484550/facebook-authorization-problem/485208#485208 1 Answer by Peter Bailey for Facebook authorization problem Peter Bailey 2009-01-27T20:55:26Z 2009-01-27T20:55:26Z <p>Ok, I figured it out.</p> <p>As it turns out, Flash already follows the redirects - all I needed to do was detect (at the canvas URL) when there was an authorization request (noted by the presence of <strong>auth_token</strong> and <strong>next</strong>) and <em>include</em> the auth_token as a GET parameter when I redirected to the next URL (basically, forward the auth_token on to the original request).</p> <p>So, contrary to what I said above, the redirect did NOT break the flash call - it just didn't have enough data to be a valid request.</p>