0

我已经使用以下代码为 woocommerce rest api 注册了新的自定义路由

const Product_Review = 'products/reviews/(?P<product_id>[\d]+)';
public function register_routes( $routes ) {
    $routes[ self::Product_Review ] = array(array(
        array( $this, 'create_product_review_item' ),
        WC_API_Server::EDITABLE | WC_API_Server::CREATABLE | WC_API_Server::ACCEPT_DATA 
    ));
    return $routes;
}

这条路线已成功注册,因为我可以在 woocommerce 端点中看到它,如下所示:

在此处输入图像描述

但是当我从javascript调用这个api时,它给了我这个错误:

{
    "errors":[
        {
            "code":"woocommerce_api_no_route",
            "message":"No route was found matching the URL and request method"
        }
    ]
}

我的网址:

http://angular.templatic.net/wc-api/v3/products/reviews/31?oauth_consumer_key=ck_9ae878f7a1fa134a2acad1eef7c0182dd3f7e68a&oauth_nonce=d3gf9k8KQXrzGV3LTugcVqrrdME6wzCz&oauth_signature_method=HMAC-SHA256&oauth_timestamp=1481008886&oauth_version=1.0&oauth_signature=xahKi7PjaLxEUaJWPTUnewbI0JoJKYi2Vtn3L2KF1%2FM%3D

我想将此路由用于在数据库中插入数据的 post 方法。

4

0 回答 0