如何从内容响应Laravel获取access_token

时间:2018-11-06 09:23:10

标签: php unit-testing laravel-5 token access-token

我有来自api响应的以下响应内容:

{"token_type":"Bearer","expires_in":31535919,"access_token":"eyJ0eXa99e760ef4e468d17198f9fa6be9d67c36240a9bf9bb74d76b18e18ca2661706e33d1bc80cdAiOiJKV1QiLCJhbGciOiJSU.......

如何获取access_token值?这样我就可以使用。

1 个答案:

答案 0 :(得分:0)

您可以使用json_decode函数将其转换为对象并在那里进行访问。

$response = '{"token_type":"Bearer","expires_in":31535919,"access_token":"eyJ0eXa99e760ef4e468d17198f9fa6be9d67c36240a9bf9bb74d76b18e18ca2661706e33d1bc80cdAiOiJKV1QiLCJhbGciOiJSU.......';

$response = json_decode($response, true);
echo $response['access_token'];

希望这会有所帮助。