我最近创建了一个 Shopify 管理员帐户并创建了一个私有应用程序来从外部应用程序访问 Shopify 商店内容。我从 Postman 调用 Shopify 博客 API 以使用 API 密钥和密码获取博客,但我无法检索博客的内容。
我调用了这个端点来访问博客https://${API_KEY}:${PASSWORD}@${STORE_NAME}.myshopify.com/admin/api/2021-01/blogs.json
这是我在邮递员那里得到的回复:
{
"blogs": [
{
"id": 75486953641,
"handle": "news",
"title": "News",
"updated_at": "2021-01-18T04:58:06-08:00",
"commentable": "no",
"feedburner": null,
"feedburner_location": null,
"created_at": "2021-01-13T05:03:38-08:00",
"template_suffix": null,
"tags": "about",
"admin_graphql_api_id": "gid://shopify/OnlineStoreBlog/75486953641"
}
]
}
这实际上表明我有一个博客,但它没有显示我写的博客内容,我在这里遗漏了什么,我如何才能真正访问博客内容?