首页  >  文章  >  后端开发  >  如何在 PHP 中从 URL 访问 JSON 对象并提取访问令牌?

如何在 PHP 中从 URL 访问 JSON 对象并提取访问令牌?

Barbara Streisand
Barbara Streisand原创
2024-11-15 04:06:02596浏览

How to Access JSON Objects from URLs in PHP and Extract the Access Token?

在 PHP 中从 URL 访问 JSON 对象

要从给定 URL 获取 JSON 对象并在 PHP 中提取“access_token”值,有几种方法:

使用 file_get_contents()

<?php
    $json = file_get_contents('url_here');
    $obj = json_decode($json);
    echo $obj->access_token;
?>

使用curl

<?php
    $ch = curl_init();
    // Enable SSL verification (set to true for production environments)
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, true);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    curl_setopt($ch, CURLOPT_URL, 'url_here');
    $result = curl_exec($ch);
    curl_close($ch);

    $obj = json_decode($result);
    echo $obj->access_token;
?>

启用“ file_get_contents”,确保 PHP 配置中的“allow_url_fopen”设置为“1”或使用以下代码:

<?php
    ini_set('allow_url_fopen', 1);

以上是如何在 PHP 中从 URL 访问 JSON 对象并提取访问令牌?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn