GET错误的凭证要求出现404错误

时间:2019-03-19 19:46:08

标签: javascript request

我已将我的节点包切换到官方的shopify-api-node,现在请求无法正常工作,它返回404错误。

在查看文档后,requests参数似乎很好,并且shopName,访问令牌等也都正确,我对最后一个软件包使用了相同的(shopify-node-api),因为我停止使用它以一种奇怪的编码语言返回了一个尸体,所以我无法检查它是否有错误,无论如何这是代码:

“名称”值是订单号。

 getOrderByNum: (req, res) => {
    // const domain = req.params.domain;
    const domain = 'chatbotdemo.myshopify.com'
    const name = req.params.name;
    console.log(req.body)
    db.getStoreTocken(domain, (result) => {
          const shopify = new Shopify({
            shopName: domain,
            accessToken: result, 
            autoLimit: true
          });

         shopify.order.get(name)
         .then(order => {

            console.log('console the order??!?!?!');
        })
        .catch(err => console.error('error??' + err));

任何帮助将不胜感激,

shopify文档:

https://www.npmjs.com/package/shopify-api-node

0 个答案:

没有答案