我正在搜索运行带有更新的WooCommerce REST API。以json格式获取数据不是大问题:https://www.example.com/wp-json/wc/v2/orders?consumer_key=ck_XXXXXXXXXXX&consumer_secret=cs_XXXXXXXXXXXX
但是我一直坚持更新数据,并尝试了不同的方法,例如:
<?php
$data = [
'status' => 'completed'
];
print_r($woocommerce->put('orders/727', $data));
?>
或
$updated_order = $wc_api->update_order( 247, array( 'status' => 'completed' ) );
print_r( $updated_order );
但是什么也没发生...
这是我正在使用的完整php代码:
<?php
require __DIR__ . '/vendor/autoload.php';
use Automattic\WooCommerce\Client;
$woocommerce = new Client(
'https://example.com',
'consumer_key',
'consumer_secret',
[
'wp_api' => true,
'version' => 'wc/v3'
]
);
?>
//JSON response example:
echo($woocommerce->get(''));
$updated_order = $wc_api->update_order( 247, array( 'status' => 'completed' ) );
print_r( $updated_order );
// the updated order object will be returned
?>
我认为我在处理API时出错。