Im trying to get access token of facebook Page with Python SDK.
facebook_graph = facebook.GraphAPI(oath_token)
facebook_graph.get_object(page_id, fields="access_token")
Show only id of this page. But in php
$page_info = $facebook->api("/$page_id?fields=access_token");
Its show id and access_token
What im doing wrong? Thanks