实际上,我想向api发送get请求。响应是xml格式的。我试过这个
<article>
<div class="entry-content">
<?php
$url = "XXXXXXX";
$args = array(
\'headers\' => array(
\'Authorization\' => \'Basic \' . base64_encode( \'username:password\' ),
\'Accept\' => \'application/xml\'
)
);
$res = wp_remote_request(
$url,
array(
\'method\' => \'GET\',
\'headers\' => $args
)
);
print_r($res);
?>
</div>
</article>
我已经在postman中测试了相同的url,服务器的响应即将到来。但在worpress中,它不会出现,它会给我403个请求\\u Utility\\u CaseInsensitiveDictionary data protected error。
如何解决这个问题请帮助我。