这是我用来从Feedbin API获取 JSON 文件的函数。
<?php
error_reporting(E_ALL);
// JSON URL which should be requested
$json_url = 'https://api.feedbin.me/v2/entries.json';
$username = 'my_username'; // authentication
$password = ' my_password'; // authentication
// Initializing curl
$ch = curl_init( $json_url );
// Configuring curl options
$options = array(
CURLOPT_RETURNTRANSFER => true,
CURLOPT_USERPWD => $username . ":" . $password // authentication
);
// Setting curl options
curl_setopt_array( $ch, $options );
// Getting results
$result = curl_exec($ch); // Getting JSON result string
print_r ($result);
?>
问题是我得到的 JSON 有点……奇怪。它有很多字符,如\u003E\u003C/a\u003E\u003C/p\u003E\n\u003Cp\u003E ...您可以在此处查看 JSON 。