I'm not quite sure if I'm doing the auth correctly, so I'm asking here to verify my process.
Check if user is authenticated, if not proceed to next step.
1) Redirect the user to: https://www.facebook.com/dialog/oauth?client_id=YOUR_APP_ID&redirect_uri=YOUR_URL
2) On the redirect, I take the $_REQUEST['code'] and I re-issue it to https://graph.facebook.com/oauth/access_token?client_id=YOUR_APP_ID&redirect_uri=YOUR_URL&client_secret=YOUR_APP_SECRET&code=THE_CODE_FROM_ABOVE to get access token.
3) I get the access token, save it to my session, user is now authenticated and I redirect them back to my application's landing page.
Everything works fine but it seems it's just my app has all these too many redirects happening. Other apps seem to just take you straight to their app without going through step 1(those that already added the app).
I'm wondering if others are using the "offline_access" permission and using this as a way to bypass getting the "code" to get the "access_token" routine.
If you got any suggestions, please list them. Thank you.