我正在尝试在Android中进行公开的脸书视频图形调用。但我是facebook图表的新手,无法找到如何用我的App访问令牌替换用户访问令牌。
/* make the API call */
new GraphRequest(
AccessToken.getCurrentAccessToken(), //wanna replace with app access token
"/{video-id}",
null,
HttpMethod.GET,
new GraphRequest.Callback() {
public void onCompleted(GraphResponse response) {
/* handle the result */
}
}
).executeAsync();
通过以下代码成功完成了php的相同案例。
try {
// Returns a `Facebook\FacebookResponse` object
$response = $fb->get(
'/'.$_REQUEST["url"].'?fields=id,length',
'1234567890|-hjgstdusgdsgdsd***' // my app access token
);
$graphNode = $response->getGraphNode();
echo $graphNode['id'];
} catch(Facebook\Exceptions\FacebookResponseException $e) {
echo "error";
} catch(Facebook\Exceptions\FacebookSDKException $e) {
echo "error";
}
请帮助我,我找到了整整一天的时间。但还是不行。提前致谢。我是facebook图表的新手。