【问题标题】:Create new product by calliing shopify api通过调用 shopify api 创建新产品
【发布时间】:2020-06-01 00:45:33
【问题描述】:

我正在尝试通过调用 shopify 产品 api (/admin/api/2020-01/products.json) 来创建新产品。我正在尝试使用“https”模块来实现这一点。下面是示例代码

const url1 = 'https://{api_token}@tuscstore.myshopify.com/admin/api/2020-01/products.json';
    var obj = {
      "product":[
          {
              "title": "Saturn",
              "body_html": "<p>The epitome of elegance</p>",
              "vendor": "Soltions inc",
              "product_type": "Planets",
              "handle": "saturn",
              "tags": "",
              "images": [
                  {
                      "src": "https://solarsystem.nasa.gov/system/stellar_items/image_files/38_saturn_1600x900.jpg"
                  }
              ]
          }
      ]
    };

const https = require('https');

var data = JSON.stringify(obj)

const options = new URL(url1);

var req = https.request(options, (res) => {
  console.log('statusCode:', res.statusCode);
  console.log('headers:', res.headers);

/*   res.on('data', (d) => {
     process.stdout.write(d);
  }); */
});

req.on('error', (e) => {
  console.error(e);
});

req.write(data);
req.end();

const Index = () => (
    <div>
      <p>Sample app using React and Next.js</p>
    </div>
  );

export default Index;

我面临两个问题,

  1. 当我执行“process.stdout.write(d)”时,我收到无法读取属性“write”未定义。
  2. 如果我像在 上面的代码,我没有得到错误。

在任何一种情况下,我都会得到 200 的状态码,而不是根据 shopify 的文档我应该收到的 201。

有人可以帮我解决问题吗?

编辑:使用 Post,我得到一个类型错误

const https = require('https');

var data = JSON.stringify(obj)


var options = {
  hostname: 'https://{apikey:password}@tuscstore.myshopify.com/admin/api/2020-01',
  path: '/products.json',
  method: 'POST',
  headers: {
       'Content-Type': 'application/json',
       /*'Content-Length': data.length*/
       'Authorization' : 'API_TOKEN'
     }
};


var req = https.request(options, (res) => {
  console.log('statusCode:', res.statusCode);
  console.log('headers:', res.headers);
});

req.on('error', (e) => {
  console.error(e);
});

req.write(data);
req.end();

TypeError:无法在“窗口”上执行“获取”:无法从https://[https://{APIKEY:PWD}@tuscstore.myshopify.com/admin/api/2020-01]/products.json 解析 URL p>

【问题讨论】:

    标签: javascript node.js reactjs https shopify-app


    【解决方案1】:

    您创建了一个新产品,您必须发出 http POST 请求,现在您发出 http GET 请求,您应该像这样更新您的 options

    const options = {
      hostname: 'https://apikey:password@<@store_url>/admin/api/2020-01', // your host name
      path: '/shop.json', // your end point
      method: 'POST',
      headers: {
        'Content-Type': 'application/json',
        'Authorization' : 'YOUR_API_TOKEN'
      }
    }
    

    或者你可以使用这个包来解决你所有的问题https://www.npmjs.com/package/shopify-api-node

    【讨论】:

    • 'Authorization' : 'YOUR_API_TOKEN',这是来自我的合作伙伴帐户的令牌吗?
    • 根据文件,它似乎是您的合作伙伴帐户中的令牌