I am using a facebook api to generate an access key. To obtain you need to input a redirect url.
The output adds a get to the redirect url but i am getting this:
http://example.com/index.php?#access_token=228384748&expires_in=5386
In my index.php:
echo $_GET['access_token']; //Doesnt work
echo $_GET['#access_token']; //Doesnt work
How can i obtain this value? Thanks!