Товарищи, авторизирую пользователя так:
https://www.facebook.com/v2.10/dialog/oauth?client_id=******&scope=user_friends&redirect_uri='.$uri.'&response_type=code'
Редиректом приходит code и далее делаю:
$ajson=file_get_contents('https://graph.facebook.com/v2.10/oauth/access_token?client_id=*******&redirect_uri='.$uri.'&client_secret=*****&code='.$_GET['code']);
Приходит JSON:
object(stdClass)#999 (3) {
["access_token"]=>
string(181) "*****"
["token_type"]=>
string(6) "bearer"
["expires_in"]=>
int(5177362)
}
В вк приходит еще и ID пользователя. Как мне получить ID пользователя, чтобы дальше пользоваться API GRAPH??