Trying to work out Authorization within a page tab app. I direct user to the auth dialog which redirects them back to my page tab with "&code=XXXXXXX..." in the url.
However, $code = $_REQUEST["code"];, which always worked on a canvas app, isn't working for me in the page tab app. How do I access my code to proceed with authorization?
Or... Am I unable to access info in the url with PHP?
Apologies if this is a repeat, but in searching all I've found were questions asking how to get the page url for the sake of redirect.