GraphQL Admin和REST Admin API入门

GraphQL Admin和REST Admin API使您可以使用GraphQL或REST为Shopify管理员构建应用程序和其他集成。借助这些API,您可以创建在商店运营的每个阶段都提供功能的应用程序,包括运输,履行和产品管理。


验证

GraphQL Admin和REST Admin API需要Shopify访问令牌(对于公共应用程序自定义应用程序)或API密码(对于私有应用程序)才能发出经过身份验证的请求。

您可以按照OAuth授权流程或通过创建私有应用并使用该应用的API密码来获取访问令牌。


使用OAuth进行身份验证

要获取访问令牌,请遵循OAuth指南中的OAuth授权流程。X-Shopify-Access-Token在请求中包括访问令牌作为标题。


使用基本的HTTP身份验证进行身份验证

  1. 在Shopify管理员中,点击应用
  2. 点击管理私人应用
  3. 点击创建新的私人应用
  4. 输入您的私人应用程序的详细信息。
  5. 点击保存
  6. 使用生成的API密码作为访问令牌。

GraphQL Admin API

GraphQL Admin API是基于GraphQL的基于REST的Admin API的替代,并使Shopify管理员的功能可在单个GraphQL端点上使用:

POST [https://{shop}.myshopify.com/admin/api/2021-01/graphql.json](https://%7Bshop%7D.myshopify.com/admin/api/2021-01/graphql.json)

您可以使用GraphiQL应用程序,curl或任何HTTP客户端访问GraphQL Admin API:

注意:

Shopify的GraphQL API仅接受POST请求。其他HTTP方法(例如GET或PUT)将返回400(错误请求)406(不可接受)响应。


使用GraphiQL应用

我们建议安装Shopify自己的GraphiQL应用程序,以使用GraphQL Admin API探索您商店的数据。安装应用程序后,可以通过运行以下查询来对其进行测试:

POST [https://{shop}.myshopify.com/admin/api/2021-01/graphql.json](https://%7Bshop%7D.myshopify.com/admin/api/2021-01/graphql.json)

  1. query {
  2. shop {
  3. name
  4. primaryDomain {
  5. url
  6. host
  7. }
  8. }
  9. }

JSON响应:

  1. {
  2. "data": {
  3. "shop": {
  4. "name": "graphql",
  5. "primaryDomain": {
  6. "url": "https://graphql.myshopify.com",
  7. "host": "graphql.myshopify.com"
  8. }
  9. }
  10. }
  11. }


使用卷曲

以下示例显示了对前5个产品ID和句柄的查询。替换{shop}为商店的域和{password}身份验证”部分中生成的访问令牌。

注意:

如果您使用的是HTTP客户端(例如Postman或Insomnia),则必须将设置Content-Typeapplication/json而不是application/graphql

POST [https://{shop}.myshopify.com/admin/api/2021-01/graphql.json](https://%7Bshop%7D.myshopify.com/admin/api/2021-01/graphql.json)

  1. curl -X POST \
  2. https://{shop}.myshopify.com/admin/api/2021-01/graphql.json \
  3. -H 'Content-Type: application/graphql' \
  4. -H 'X-Shopify-Access-Token: {password}' \
  5. -d '
  6. {
  7. products(first: 5) {
  8. edges {
  9. node {
  10. id
  11. handle
  12. }
  13. }
  14. pageInfo {
  15. hasNextPage
  16. }
  17. }
  18. }
  19. '

JSON响应:

  1. {
  2. "data": {
  3. "products": {
  4. "edges": [
  5. {
  6. "node": {
  7. "id": "gid://shopify/Product/1974208299030",
  8. "handle": "rough-snowflake-camisole"
  9. }
  10. }
  11. ],
  12. "pageInfo": {
  13. "hasNextPage": true
  14. }
  15. }
  16. }
  17. }


查询示例

在GraphQL中,查询等同于REST的GET操作动词。它们通常从下面列出的对象之一开始,[QueryRoot](https://shopify.dev/docs/admin-api/graphql/reference/common-objects/queryroot)并且可以从该对象具有的任何连接中获取数据。即使将POST发送到GraphQL端点,如果主体仅包含查询,则将仅检索数据,而不修改数据。

以下示例显示查询某个位置可用库存商品数量的方法:

POST [https://{shop}.myshopify.com/admin/api/2021-01/graphql.json](https://%7Bshop%7D.myshopify.com/admin/api/2021-01/graphql.json)

  1. {
  2. inventoryItem(id: "gid://shopify/InventoryItem/19848949301270") {
  3. id
  4. inventoryLevels(first: 10) {
  5. edges {
  6. node {
  7. available
  8. }
  9. }
  10. }
  11. }
  12. }

JSON响应:

  1. {
  2. "data": {
  3. "inventoryItem": {
  4. "id": "gid://shopify/InventoryItem/19848949301270",
  5. "inventoryLevels": {
  6. "edges": [
  7. {
  8. "node": {
  9. "available": 5
  10. }
  11. }
  12. ]
  13. }
  14. }
  15. }
  16. }


变异示例

变异等效于REST的数据修改动作动词,例如PUT或DELETE。以下示例显示了一种变异,该变异增加了某个位置的可用库存:

POST [https://{shop}.myshopify.com/admin/api/2021-01/graphql.json](https://%7Bshop%7D.myshopify.com/admin/api/2021-01/graphql.json)

  1. mutation {
  2. inventoryAdjustQuantity(
  3. input:{
  4. inventoryLevelId: "gid://shopify/InventoryLevel/13570506808?inventory_item_id=10820777115690"
  5. availableDelta: 1
  6. }
  7. )
  8. {
  9. inventoryLevel {
  10. available
  11. }
  12. }
  13. }

JSON响应:

  1. {
  2. "inventoryAdjustQuantity": {
  3. "inventoryLevel": {
  4. "available": 9
  5. },
  6. "userErrors": []
  7. }
  8. }


REST管理员API

您可以使用curl或任何其他HTTP客户端访问REST Admin API。REST Admin API端点按资源组织。您需要根据应用程序提供的服务使用不同的API终结点。

GET使用curl的示例请求

以下卷曲请求通过使用Shop资源GET /admin/api/2021-01/shop.json端点来检索信息。替换{shop}为商店的域和{password}身份验证”部分中生成的访问令牌。

要求:

复制

  1. curl -X GET \
  2. https://{shop}.myshopify.com/admin/api/2021-01/shop.json \
  3. -H 'Content-Type: application/json' \
  4. -H 'X-Shopify-Access-Token: {password}'

JSON响应:

  1. {
  2. "shop": {
  3. "id": 690933842,
  4. "name": "Apple Computers",
  5. "email": "steve@apple.com",
  6. "domain": "shop.apple.com",
  7. "province": "California",
  8. "country": "US",
  9. "address1": "1 Infinite Loop",
  10. "zip": "95014",
  11. "city": "Cupertino",
  12. "source": null,
  13. "phone": "1231231234",
  14. "latitude": 45.45,
  15. "longitude": -75.43,
  16. "primary_locale": "en",
  17. "address2": "Suite 100",
  18. "created_at": "2007-12-31T19:00:00-05:00",
  19. "updated_at": "2021-01-01T14:39:35-05:00",
  20. "country_code": "US",
  21. "country_name": "United States",
  22. "currency": "USD",
  23. "customer_email": "customers@apple.com",
  24. "timezone": "(GMT-05:00) Eastern Time (US & Canada)",
  25. "iana_timezone": "America/New_York",
  26. "shop_owner": "Steve Jobs",
  27. "money_format": "$",
  28. "money_with_currency_format": "$ USD",
  29. "weight_unit": "lb",
  30. "province_code": "CA",
  31. "taxes_included": null,
  32. "auto_configure_tax_inclusivity": null,
  33. "tax_shipping": null,
  34. "county_taxes": true,
  35. "plan_display_name": "Shopify Plus",
  36. "plan_name": "enterprise",
  37. "has_discounts": true,
  38. "has_gift_cards": true,
  39. "myshopify_domain": "apple.myshopify.com",
  40. "google_apps_domain": null,
  41. "google_apps_login_enabled": null,
  42. "money_in_emails_format": "$",
  43. "money_with_currency_in_emails_format": "$ USD",
  44. "eligible_for_payments": true,
  45. "requires_extra_payments_agreement": false,
  46. "password_enabled": false,
  47. "has_storefront": true,
  48. "eligible_for_card_reader_giveaway": false,
  49. "finances": true,
  50. "primary_location_id": 905684977,
  51. "cookie_consent_level": "implicit",
  52. "visitor_tracking_consent_preference": "allow_all",
  53. "force_ssl": true,
  54. "checkout_api_supported": true,
  55. "multi_location_enabled": false,
  56. "setup_required": false,
  57. "pre_launch_enabled": false,
  58. "enabled_presentment_currencies": [
  59. "USD"
  60. ]
  61. }
  62. }

范例POST要求

以下示例说明了如何通过使用产品资源POST /admin/api/2021-01/products.json端点来创建具有草稿状态的产品

要求:

POST [https://{shop}.myshopify.com/admin/api/2021-01/products.json](https://%7Bshop%7D.myshopify.com/admin/api/2021-01/products.json)

复制

  1. {
  2. "product": {
  3. "title": "Burton Custom Freestyle 151",
  4. "body_html": "<strong>Good snowboard!</strong>",
  5. "vendor": "Burton",
  6. "product_type": "Snowboard",
  7. "status": "draft"
  8. }
  9. }

JSON响应:

  1. {
  2. "product": {
  3. "id": 4,
  4. "title": "Burton Custom Freestyle 151",
  5. "body_html": "<strong>Good snowboard!<\/strong>",
  6. "vendor": "Burton",
  7. "product_type": "Snowboard",
  8. "created_at": "2020-09-09T17:03:05-07:00",
  9. "handle": "burton-custom-freestyle-151",
  10. "updated_at": "2020-09-09T17:03:06-07:00",
  11. "published_at": "2020-09-09T17:03:05-07:00",
  12. "template_suffix": null,
  13. "status": "draft",
  14. "published_scope": "web",
  15. "tags": "",
  16. "admin_graphql_api_id": "gid:\/\/shopify\/Product\/4",
  17. "variants": [
  18. {
  19. "id": 5,
  20. "product_id": 4,
  21. "title": "Default Title",
  22. "price": "0.00",
  23. "sku": "",
  24. "position": 1,
  25. "inventory_policy": "deny",
  26. "compare_at_price": null,
  27. "fulfillment_service": "manual",
  28. "inventory_management": null,
  29. "option1": "Default Title",
  30. "option2": null,
  31. "option3": null,
  32. "created_at": "2020-09-09T17:03:06-07:00",
  33. "updated_at": "2020-09-09T17:03:06-07:00",
  34. "taxable": true,
  35. "barcode": null,
  36. "grams": 0,
  37. "image_id": null,
  38. "weight": 0.0,
  39. "weight_unit": "kg",
  40. "inventory_item_id": 789,
  41. "inventory_quantity": 0,
  42. "old_inventory_quantity": 0,
  43. "requires_shipping": true,
  44. "admin_graphql_api_id": "gid:\/\/shopify\/ProductVariant\/6"
  45. }
  46. ],
  47. "options": [
  48. {
  49. "id": 456,
  50. "product_id": 4,
  51. "name": "Title",
  52. "position": 1,
  53. "values": [
  54. "Default Title"
  55. ]
  56. }
  57. ],
  58. "images": [],
  59. "image": null
  60. }
  61. }


范例PUT要求

以下示例说明了如何通过使用“客户地址”资源PUT /admin/api/2021-01/customers{customer_id}/addresses/{address_id}.json端点来更新客户地址的邮政编码。

要求:

PUT /admin/api/2021-01/customers/207119551/addresses/207119551.json

复制

  1. {
  2. "address": {
  3. "id": 207119551,
  4. "zip": "90210"
  5. }
  6. }

JSON响应:

  1. {
  2. "customer_address": {
  3. "id": 207119551,
  4. "customer_id": 207119551,
  5. "first_name": null,
  6. "last_name": null,
  7. "company": null,
  8. "address1": "Chestnut Street 92",
  9. "address2": "",
  10. "city": "Louisville",
  11. "province": "Kentucky",
  12. "country": "United States",
  13. "zip": "90210",
  14. "phone": "555-625-1199",
  15. "name": "",
  16. "province_code": "KY",
  17. "country_code": "US",
  18. "country_name": "United States",
  19. "default": true
  20. }
  21. }


范例DELETE要求

以下示例说明了如何通过使用订单资源DELETE /admin/api/2021-01/orders/{order_id}.json端点删除订单

要求:

DELETE /admin/api/2021-01/orders/450789469.json


JSON响应:

  1. HTTP/1.1 200 OK
  2. {}


下一步