Hello I am reading the Facebook API docs but I need a simple Help.
$token_url = "https://graph.facebook.com/oauth/access_token?"
. "client_id=" . $app_id . "&redirect_uri=" . urlencode($my_url)
. "&client_secret=" . $app_secret . "&code=" . $code;
I do understand all the variables...
But I do NOT understand what is $code
What is that variable?
I just need to get the last status of the user from the Facebook Feed.
I need to generate the Access Token, but I do not really know what that $code means??
Please help.