我试图向处女请求数据,让api在我的博客上显示我的筹款信息。我是一个完整的新手,在阅读并尝试了我可以在主题上找到的所有内容后,无法完成如何完成这样的任务。这是我在cloud9上的wordpress安装中的.php文件中使用的代码(我已经删除了搜索和api密钥)。我还在我的实时博客页面上尝试了代码,该博客由Bluehost托管。我不确定我是否在正确的位置创建页面,或者下面的代码是否应该包含在某种功能中。我们非常感谢您提供的任何帮助。
$url = "https://api.virginmoneygiving.com/fundraisers/v1/";
$args = array(
'headers' => array( "Content-type" => "application/json" ),
'httpversion' => 1.1,
);
$response = wp_remote_get( $url, $args );
$body = wp_remote_retrieve_body( $response );
$response_code = wp_remote_retrieve_response_code( $response );
print_r( $response_code );
echo $response;