详细信息在这里:首先我会点击这个链接,例如。http://your.app/callback?code =abc123然后我将从 url 的code变量 接收值然后我想将此 url 重定向为https://api.another.com/token grant_type=authorization_code& code=[ CODE ] url 中的 POST 操作,其值为代码
问问题
42 次
1 回答
0
使用卷曲:
一个例子:
<?php
// if you get the code here from the url,
$code = $_GET['code'];
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,"http://api.another.com/");
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS,
"token_grant_type=authorization_code&code=" + $code);
// receive server response ...
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$server_output = curl_exec ($ch);
curl_close ($ch);
?>
于 2016-04-29T05:34:02.940 回答