如何在变量中存储oAuth访问令牌

时间:2012-03-25 09:39:29

标签: php json oauth-2.0 http-authentication

我已经向服务器提出了成功的oAuth请求,现在我想从http标头响应中提取响应数据,并且我已经编写了以下代码

$request_uri = "hostname?grant_type=[grant_type]=&client_id=[client_id]&client_secret=[client_secret]&code=[code]";

$resp = header("Location:".$request_uri)

$return_data = json_decode($resp, true);

但是当我运行脚本时,重定向的页面明显重定向到主机名,我发现json会回复你可以see here

谢谢, GAUTAM

0 个答案:

没有答案