Facebook API获取访问令牌
本文关键字:访问令牌 获取 API Facebook | 更新日期: 2023-09-27 18:15:14
我有一个要求,我想只使用API来使用Facebookaccess令牌
我已经看到了使用web请求和响应来获得Facebook API的方法,它们还使用重定向URI。
但我不能真正使用重定向URI,因为我想在azure工作人员角色中使用它。
类似于:
facebook a=new facebook();
a.appid="";
这只是一个可视化,但任何帮助都将是伟大的。
编辑:
下面的答案有帮助。如果我在浏览器中使用以下urihttps://graph.facebook.com/oauth/access_token?client_id=app_Id&client_secret=secret_key&grant_type=client_credentials
它显示access_token=###但是如果使用以下代码在.net中执行相同操作字符串url="https://graph.facebook.com/oauth/access_token?client_id=app_id&client_secret=secretKey&grant_type=client_credentials";
string token;
WebRequest request = WebRequest.Create(url);
WebResponse response = request.GetResponse();
它抛出未经授权的
如果C#API没有为其提供方法,您可以自己做。访问令牌是以下url的内容。你只需要提出https请求。
https://graph.facebook.com/oauth/access_token?client_id=<APP_ID>&client_secret=<APP_SECRET>&grant_type=client_credentials
好的,这里是工作的PHP代码:
function getAccessToken(){
$token_url = 'https://graph.facebook.com/oauth/access_token?client_id='.APP_ID.'&client_secret='.APP_SECRET.'&grant_type=client_credentials';
return makeRequest($token_url);
}
function makeRequest( $url, $timeout = 5 ) {
$ch = curl_init();
curl_setopt( $ch, CURLOPT_USERAGENT, "PHP_APP" );
curl_setopt( $ch, CURLOPT_URL, $url );
curl_setopt( $ch, CURLOPT_ENCODING, "" );
curl_setopt( $ch, CURLOPT_RETURNTRANSFER, true );
curl_setopt( $ch, CURLOPT_AUTOREFERER, true );
curl_setopt( $ch, CURLOPT_SSL_VERIFYPEER, false ); # required for https urls
curl_setopt( $ch, CURLOPT_CONNECTTIMEOUT, $timeout );
curl_setopt( $ch, CURLOPT_TIMEOUT, $timeout );
curl_setopt( $ch, CURLOPT_MAXREDIRS, 10 );
$content = curl_exec( $ch );
$response = curl_getinfo( $ch );
curl_close ( $ch );
if($response['http_code'] == 200) return $content;
return FALSE;
}