我正在尝试使用wordpress wp_remote_post将XML文件中的数据发送到api。但是,当我检查响应即时得到0字节接收。我不确定我哪里出错了,但是可以提供任何帮助。以下是供参考的文档https://help.rmscloud.com/rms-api-technical-information
<?php
$url = 'https://api.rms.com.au/rmsxml/rms_api.aspx';
$xml = 'https://spf.nz/dev/wp-content/themes/yootheme-child/rms.xml';
$args = array(
'method' => 'POST',
'timeout' => 10,
'httpversion' => '1.1',
'headers' => array(
'Authorization' => 'Basic ' . base64_encode( 'demoagent:aREbf2875khu*' ),
'Content-type' => 'application/xml',
'Content-length' => 83
),
'body' => array($xml),
'sslverify' => true
);
$response = wp_remote_post( $url, $args);
if ( is_wp_error( $response ) ) {
$error_message = $response->get_error_message();
echo "Something went wrong: $error_message";
} else {
echo 'Response:<pre>';
print_r( $response );
echo '</pre>';
}
?>
XML文件:
<RMSPropertyRQ>
<Requests>
<Request>
<AgentId>1</AgentId>
<RMSClientId>3038</RMSClientId>
</Request>
<Request>
<AgentId>1</AgentId>
<RMSClientId>3038</RMSClientId>
</Request>
</Requests>
</RMSPropertyRQ>
答案 0 :(得分:0)
实际上,您不是通过wp_remote_post发送XML数据。
您已经设置了'body' => array($xml)
,但是$ xml变量只是一个包含URL的字符串。取而代之的是,您需要获取xml数据并将其发送。
<?php
$url = 'https://api.rms.com.au/rmsxml/rms_api.aspx';
$xml = wp_remote_get('https://spf.nz/dev/wp-content/themes/yootheme-child/rms.xml');
$xml=$xml['body'];
///......