ruby_shopify_api 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (351) hide show
  1. checksums.yaml +7 -0
  2. data/.document +5 -0
  3. data/.github/CODEOWNERS +1 -0
  4. data/.github/ISSUE_TEMPLATE.md +36 -0
  5. data/.github/probots.yml +2 -0
  6. data/.github/workflows/build.yml +43 -0
  7. data/.gitignore +15 -0
  8. data/.rubocop.yml +28 -0
  9. data/.rubocop_todo.yml +75 -0
  10. data/CHANGELOG-OLD.md +501 -0
  11. data/CHANGELOG.md +5 -0
  12. data/CONTRIBUTING.md +8 -0
  13. data/CONTRIBUTORS +3 -0
  14. data/Gemfile +10 -0
  15. data/Gemfile.lock +151 -0
  16. data/Gemfile_ar41 +5 -0
  17. data/Gemfile_ar50 +5 -0
  18. data/Gemfile_ar51 +5 -0
  19. data/Gemfile_ar60 +5 -0
  20. data/Gemfile_ar_main +5 -0
  21. data/LICENSE +20 -0
  22. data/README.md +649 -0
  23. data/RELEASING +17 -0
  24. data/Rakefile +55 -0
  25. data/SECURITY.md +59 -0
  26. data/dev.yml +11 -0
  27. data/docker-compose.yml +13 -0
  28. data/docs/_config.yml +1 -0
  29. data/docs/_includes/footer.html +28 -0
  30. data/docs/_includes/head.html +28 -0
  31. data/docs/_layouts/index.html +57 -0
  32. data/docs/graphql.md +241 -0
  33. data/docs/index.md +639 -0
  34. data/lib/active_resource/connection_ext.rb +11 -0
  35. data/lib/active_resource/detailed_log_subscriber.rb +55 -0
  36. data/lib/active_resource/json_errors.rb +37 -0
  37. data/lib/shopify_api/api_access.rb +57 -0
  38. data/lib/shopify_api/api_version.rb +206 -0
  39. data/lib/shopify_api/connection.rb +36 -0
  40. data/lib/shopify_api/countable.rb +15 -0
  41. data/lib/shopify_api/disable_prefix_check.rb +31 -0
  42. data/lib/shopify_api/events.rb +8 -0
  43. data/lib/shopify_api/graphql/http_client.rb +22 -0
  44. data/lib/shopify_api/graphql/railtie.rb +17 -0
  45. data/lib/shopify_api/graphql/task.rake +100 -0
  46. data/lib/shopify_api/graphql.rb +103 -0
  47. data/lib/shopify_api/hmac_params.rb +33 -0
  48. data/lib/shopify_api/limits.rb +77 -0
  49. data/lib/shopify_api/message_enricher.rb +25 -0
  50. data/lib/shopify_api/meta.rb +14 -0
  51. data/lib/shopify_api/metafields.rb +21 -0
  52. data/lib/shopify_api/paginated_collection.rb +69 -0
  53. data/lib/shopify_api/pagination_link_headers.rb +34 -0
  54. data/lib/shopify_api/resources/abandoned_checkout.rb +7 -0
  55. data/lib/shopify_api/resources/access_scope.rb +10 -0
  56. data/lib/shopify_api/resources/access_token.rb +9 -0
  57. data/lib/shopify_api/resources/address.rb +5 -0
  58. data/lib/shopify_api/resources/announcement.rb +5 -0
  59. data/lib/shopify_api/resources/api_permission.rb +9 -0
  60. data/lib/shopify_api/resources/application_charge.rb +16 -0
  61. data/lib/shopify_api/resources/application_credit.rb +5 -0
  62. data/lib/shopify_api/resources/array_base.rb +13 -0
  63. data/lib/shopify_api/resources/article.rb +22 -0
  64. data/lib/shopify_api/resources/asset.rb +101 -0
  65. data/lib/shopify_api/resources/assigned_fulfillment_order.rb +16 -0
  66. data/lib/shopify_api/resources/base.rb +166 -0
  67. data/lib/shopify_api/resources/billing_address.rb +5 -0
  68. data/lib/shopify_api/resources/blog.rb +11 -0
  69. data/lib/shopify_api/resources/carrier_service.rb +5 -0
  70. data/lib/shopify_api/resources/cart.rb +5 -0
  71. data/lib/shopify_api/resources/checkout.rb +30 -0
  72. data/lib/shopify_api/resources/collect.rb +7 -0
  73. data/lib/shopify_api/resources/collection.rb +14 -0
  74. data/lib/shopify_api/resources/collection_listing.rb +19 -0
  75. data/lib/shopify_api/resources/collection_publication.rb +10 -0
  76. data/lib/shopify_api/resources/comment.rb +24 -0
  77. data/lib/shopify_api/resources/country.rb +5 -0
  78. data/lib/shopify_api/resources/currency.rb +6 -0
  79. data/lib/shopify_api/resources/custom_collection.rb +20 -0
  80. data/lib/shopify_api/resources/customer.rb +30 -0
  81. data/lib/shopify_api/resources/customer_group.rb +6 -0
  82. data/lib/shopify_api/resources/customer_invite.rb +5 -0
  83. data/lib/shopify_api/resources/customer_saved_search.rb +12 -0
  84. data/lib/shopify_api/resources/discount_code.rb +10 -0
  85. data/lib/shopify_api/resources/discount_code_batch.rb +34 -0
  86. data/lib/shopify_api/resources/draft_order.rb +15 -0
  87. data/lib/shopify_api/resources/draft_order_invoice.rb +5 -0
  88. data/lib/shopify_api/resources/event.rb +9 -0
  89. data/lib/shopify_api/resources/fulfillment.rb +56 -0
  90. data/lib/shopify_api/resources/fulfillment_event.rb +16 -0
  91. data/lib/shopify_api/resources/fulfillment_order.rb +151 -0
  92. data/lib/shopify_api/resources/fulfillment_order_locations_for_move.rb +5 -0
  93. data/lib/shopify_api/resources/fulfillment_request.rb +16 -0
  94. data/lib/shopify_api/resources/fulfillment_service.rb +5 -0
  95. data/lib/shopify_api/resources/fulfillment_v2.rb +21 -0
  96. data/lib/shopify_api/resources/gift_card.rb +8 -0
  97. data/lib/shopify_api/resources/image.rb +17 -0
  98. data/lib/shopify_api/resources/inventory_item.rb +6 -0
  99. data/lib/shopify_api/resources/inventory_level.rb +54 -0
  100. data/lib/shopify_api/resources/line_item.rb +15 -0
  101. data/lib/shopify_api/resources/location.rb +8 -0
  102. data/lib/shopify_api/resources/marketing_event.rb +11 -0
  103. data/lib/shopify_api/resources/metafield.rb +14 -0
  104. data/lib/shopify_api/resources/note_attribute.rb +5 -0
  105. data/lib/shopify_api/resources/option.rb +5 -0
  106. data/lib/shopify_api/resources/order.rb +44 -0
  107. data/lib/shopify_api/resources/order_risk.rb +9 -0
  108. data/lib/shopify_api/resources/page.rb +7 -0
  109. data/lib/shopify_api/resources/payment.rb +7 -0
  110. data/lib/shopify_api/resources/payment_details.rb +5 -0
  111. data/lib/shopify_api/resources/ping.rb +3 -0
  112. data/lib/shopify_api/resources/policy.rb +8 -0
  113. data/lib/shopify_api/resources/price_rule.rb +8 -0
  114. data/lib/shopify_api/resources/product.rb +59 -0
  115. data/lib/shopify_api/resources/product_listing.rb +17 -0
  116. data/lib/shopify_api/resources/product_publication.rb +10 -0
  117. data/lib/shopify_api/resources/province.rb +6 -0
  118. data/lib/shopify_api/resources/publication.rb +5 -0
  119. data/lib/shopify_api/resources/receipt.rb +5 -0
  120. data/lib/shopify_api/resources/recurring_application_charge.rb +34 -0
  121. data/lib/shopify_api/resources/redirect.rb +5 -0
  122. data/lib/shopify_api/resources/refund.rb +15 -0
  123. data/lib/shopify_api/resources/report.rb +5 -0
  124. data/lib/shopify_api/resources/resource_feedback.rb +19 -0
  125. data/lib/shopify_api/resources/rule.rb +5 -0
  126. data/lib/shopify_api/resources/script_tag.rb +5 -0
  127. data/lib/shopify_api/resources/shipping_address.rb +5 -0
  128. data/lib/shopify_api/resources/shipping_line.rb +5 -0
  129. data/lib/shopify_api/resources/shipping_rate.rb +7 -0
  130. data/lib/shopify_api/resources/shipping_zone.rb +5 -0
  131. data/lib/shopify_api/resources/shop.rb +26 -0
  132. data/lib/shopify_api/resources/smart_collection.rb +15 -0
  133. data/lib/shopify_api/resources/storefront_access_token.rb +5 -0
  134. data/lib/shopify_api/resources/tax_line.rb +5 -0
  135. data/lib/shopify_api/resources/tax_service.rb +5 -0
  136. data/lib/shopify_api/resources/tender_transaction.rb +6 -0
  137. data/lib/shopify_api/resources/theme.rb +5 -0
  138. data/lib/shopify_api/resources/transaction.rb +6 -0
  139. data/lib/shopify_api/resources/usage_charge.rb +6 -0
  140. data/lib/shopify_api/resources/user.rb +5 -0
  141. data/lib/shopify_api/resources/variant.rb +43 -0
  142. data/lib/shopify_api/resources/webhook.rb +5 -0
  143. data/lib/shopify_api/resources.rb +4 -0
  144. data/lib/shopify_api/session.rb +203 -0
  145. data/lib/shopify_api/version.rb +4 -0
  146. data/lib/shopify_api.rb +45 -0
  147. data/lib/verify_docs.rb +8 -0
  148. data/service.yml +2 -0
  149. data/shipit.rubygems.yml +1 -0
  150. data/shopify_api.gemspec +47 -0
  151. data/test/abandoned_checkouts_test.rb +29 -0
  152. data/test/access_scope_test.rb +23 -0
  153. data/test/access_token_test.rb +20 -0
  154. data/test/active_resource/json_errors_test.rb +19 -0
  155. data/test/api_access_test.rb +153 -0
  156. data/test/api_permission_test.rb +9 -0
  157. data/test/api_version_test.rb +157 -0
  158. data/test/application_charge_test.rb +82 -0
  159. data/test/application_credit_test.rb +36 -0
  160. data/test/article_test.rb +72 -0
  161. data/test/asset_test.rb +26 -0
  162. data/test/assigned_fulfillment_order_test.rb +78 -0
  163. data/test/base_test.rb +213 -0
  164. data/test/blog_test.rb +9 -0
  165. data/test/carrier_service_test.rb +18 -0
  166. data/test/cart_test.rb +14 -0
  167. data/test/checkouts_test.rb +77 -0
  168. data/test/collect_test.rb +10 -0
  169. data/test/collection_listing_test.rb +84 -0
  170. data/test/collection_publication_test.rb +40 -0
  171. data/test/collection_test.rb +50 -0
  172. data/test/countable_test.rb +14 -0
  173. data/test/currency_test.rb +21 -0
  174. data/test/custom_collection_test.rb +10 -0
  175. data/test/customer_saved_search_test.rb +37 -0
  176. data/test/customer_test.rb +58 -0
  177. data/test/detailed_log_subscriber_test.rb +143 -0
  178. data/test/discount_code_batch_test.rb +41 -0
  179. data/test/discount_code_test.rb +59 -0
  180. data/test/draft_order_test.rb +167 -0
  181. data/test/fixtures/abandoned_checkout.json +184 -0
  182. data/test/fixtures/abandoned_checkouts.json +186 -0
  183. data/test/fixtures/access_scopes.json +10 -0
  184. data/test/fixtures/access_token_delegate.json +4 -0
  185. data/test/fixtures/api_versions.json +38 -0
  186. data/test/fixtures/apis.json +42 -0
  187. data/test/fixtures/application_charge.json +16 -0
  188. data/test/fixtures/application_charges.json +57 -0
  189. data/test/fixtures/application_credit.json +12 -0
  190. data/test/fixtures/application_credits.json +24 -0
  191. data/test/fixtures/article.json +15 -0
  192. data/test/fixtures/articles.json +39 -0
  193. data/test/fixtures/asset.json +9 -0
  194. data/test/fixtures/assets.json +136 -0
  195. data/test/fixtures/assigned_fulfillment_orders.json +80 -0
  196. data/test/fixtures/authors.json +1 -0
  197. data/test/fixtures/blog.json +13 -0
  198. data/test/fixtures/blogs.json +13 -0
  199. data/test/fixtures/carrier_service.json +9 -0
  200. data/test/fixtures/carts.json +43 -0
  201. data/test/fixtures/checkout.json +160 -0
  202. data/test/fixtures/checkouts.json +162 -0
  203. data/test/fixtures/collect.json +12 -0
  204. data/test/fixtures/collection.json +17 -0
  205. data/test/fixtures/collection_listing.json +11 -0
  206. data/test/fixtures/collection_listing_product_ids.json +1 -0
  207. data/test/fixtures/collection_listing_product_ids2.json +1 -0
  208. data/test/fixtures/collection_listings.json +13 -0
  209. data/test/fixtures/collection_products.json +47 -0
  210. data/test/fixtures/collection_publication.json +11 -0
  211. data/test/fixtures/collection_publications.json +13 -0
  212. data/test/fixtures/currencies.json +25 -0
  213. data/test/fixtures/custom_collection.json +17 -0
  214. data/test/fixtures/customer_invite.json +9 -0
  215. data/test/fixtures/customer_saved_search.json +9 -0
  216. data/test/fixtures/customer_saved_search_customers.json +60 -0
  217. data/test/fixtures/customers.json +59 -0
  218. data/test/fixtures/customers_account_activation_url.json +3 -0
  219. data/test/fixtures/customers_search.json +60 -0
  220. data/test/fixtures/discount_code.json +10 -0
  221. data/test/fixtures/discount_code_batch.json +14 -0
  222. data/test/fixtures/discount_code_batch_discount_codes.json +21 -0
  223. data/test/fixtures/discount_codes.json +12 -0
  224. data/test/fixtures/draft_order.json +159 -0
  225. data/test/fixtures/draft_order_completed.json +159 -0
  226. data/test/fixtures/draft_order_invoice.json +9 -0
  227. data/test/fixtures/draft_orders.json +161 -0
  228. data/test/fixtures/engagement.json +15 -0
  229. data/test/fixtures/events.json +31 -0
  230. data/test/fixtures/fulfillment.json +49 -0
  231. data/test/fixtures/fulfillment_event.json +12 -0
  232. data/test/fixtures/fulfillment_order.json +39 -0
  233. data/test/fixtures/fulfillment_order_locations_for_move.json +18 -0
  234. data/test/fixtures/fulfillment_orders.json +80 -0
  235. data/test/fixtures/fulfillment_request.json +28 -0
  236. data/test/fixtures/fulfillment_service.json +10 -0
  237. data/test/fixtures/fulfillments.json +53 -0
  238. data/test/fixtures/gift_card.json +20 -0
  239. data/test/fixtures/gift_card_disabled.json +20 -0
  240. data/test/fixtures/graphql/2019-10.json +1083 -0
  241. data/test/fixtures/graphql/dummy_schema.rb +16 -0
  242. data/test/fixtures/graphql/unstable.json +1083 -0
  243. data/test/fixtures/image.json +10 -0
  244. data/test/fixtures/images.json +20 -0
  245. data/test/fixtures/inventory_level.json +7 -0
  246. data/test/fixtures/inventory_levels.json +24 -0
  247. data/test/fixtures/marketing_event.json +28 -0
  248. data/test/fixtures/marketing_events.json +54 -0
  249. data/test/fixtures/metafield.json +12 -0
  250. data/test/fixtures/metafields.json +34 -0
  251. data/test/fixtures/order.json +297 -0
  252. data/test/fixtures/order_risk.json +14 -0
  253. data/test/fixtures/order_risks.json +28 -0
  254. data/test/fixtures/order_with_properties.json +373 -0
  255. data/test/fixtures/orders.json +299 -0
  256. data/test/fixtures/payment.json +7 -0
  257. data/test/fixtures/payments.json +9 -0
  258. data/test/fixtures/ping/conversation.json +1 -0
  259. data/test/fixtures/ping/failed_delivery_confirmation.json +1 -0
  260. data/test/fixtures/ping/message.json +1 -0
  261. data/test/fixtures/ping/successful_delivery_confirmation.json +1 -0
  262. data/test/fixtures/policies.json +8 -0
  263. data/test/fixtures/price_rule.json +27 -0
  264. data/test/fixtures/price_rules.json +28 -0
  265. data/test/fixtures/product.json +116 -0
  266. data/test/fixtures/product_listing.json +86 -0
  267. data/test/fixtures/product_listing_product_ids.json +1 -0
  268. data/test/fixtures/product_listing_product_ids2.json +1 -0
  269. data/test/fixtures/product_listings.json +174 -0
  270. data/test/fixtures/product_publication.json +11 -0
  271. data/test/fixtures/product_publications.json +13 -0
  272. data/test/fixtures/publications.json +9 -0
  273. data/test/fixtures/recurring_application_charge.json +22 -0
  274. data/test/fixtures/recurring_application_charge_adjustment.json +5 -0
  275. data/test/fixtures/recurring_application_charges.json +106 -0
  276. data/test/fixtures/redirect.json +7 -0
  277. data/test/fixtures/refund.json +112 -0
  278. data/test/fixtures/report.json +9 -0
  279. data/test/fixtures/reports.json +11 -0
  280. data/test/fixtures/script_tag.json +10 -0
  281. data/test/fixtures/script_tags.json +18 -0
  282. data/test/fixtures/shipping_rates.json +12 -0
  283. data/test/fixtures/shipping_zones.json +315 -0
  284. data/test/fixtures/shop.json +26 -0
  285. data/test/fixtures/smart_collection.json +21 -0
  286. data/test/fixtures/smart_collection_products.json +155 -0
  287. data/test/fixtures/storefront_access_token.json +9 -0
  288. data/test/fixtures/storefront_access_tokens.json +18 -0
  289. data/test/fixtures/tags.json +1 -0
  290. data/test/fixtures/tax_service.json +9 -0
  291. data/test/fixtures/tender_transactions.json +52 -0
  292. data/test/fixtures/transaction.json +29 -0
  293. data/test/fixtures/usage_charge.json +11 -0
  294. data/test/fixtures/usage_charges.json +23 -0
  295. data/test/fixtures/user.json +21 -0
  296. data/test/fixtures/users.json +42 -0
  297. data/test/fixtures/variant.json +23 -0
  298. data/test/fixtures/variants.json +88 -0
  299. data/test/fixtures/webhook.json +10 -0
  300. data/test/fixtures/webhooks.json +18 -0
  301. data/test/fulfillment_event_test.rb +74 -0
  302. data/test/fulfillment_order_test.rb +530 -0
  303. data/test/fulfillment_order_test_helper.rb +8 -0
  304. data/test/fulfillment_request_test.rb +35 -0
  305. data/test/fulfillment_service_test.rb +18 -0
  306. data/test/fulfillment_test.rb +239 -0
  307. data/test/fulfillment_v2_test.rb +66 -0
  308. data/test/gift_card_test.rb +24 -0
  309. data/test/graphql/http_client_test.rb +26 -0
  310. data/test/graphql_test.rb +190 -0
  311. data/test/hmac_params_test.rb +25 -0
  312. data/test/image_test.rb +41 -0
  313. data/test/inventory_level_test.rb +68 -0
  314. data/test/lib/webmock_extensions/last_request.rb +16 -0
  315. data/test/limits_test.rb +39 -0
  316. data/test/location_test.rb +15 -0
  317. data/test/marketing_event_test.rb +68 -0
  318. data/test/message_enricher_test.rb +45 -0
  319. data/test/meta_test.rb +47 -0
  320. data/test/metafield_test.rb +56 -0
  321. data/test/order_risk_test.rb +47 -0
  322. data/test/order_test.rb +140 -0
  323. data/test/pagination_test.rb +290 -0
  324. data/test/payment_test.rb +19 -0
  325. data/test/policy_test.rb +20 -0
  326. data/test/price_rule_test.rb +70 -0
  327. data/test/product_listing_test.rb +97 -0
  328. data/test/product_publication_test.rb +40 -0
  329. data/test/product_test.rb +111 -0
  330. data/test/publication_test.rb +12 -0
  331. data/test/recurring_application_charge_test.rb +204 -0
  332. data/test/redirect_test.rb +10 -0
  333. data/test/refund_test.rb +37 -0
  334. data/test/report_test.rb +37 -0
  335. data/test/resource_feedback_test.rb +43 -0
  336. data/test/script_tag_test.rb +31 -0
  337. data/test/session_test.rb +640 -0
  338. data/test/shipping_rate_test.rb +17 -0
  339. data/test/shipping_zone_test.rb +11 -0
  340. data/test/shop_test.rb +82 -0
  341. data/test/smart_collection_test.rb +11 -0
  342. data/test/storefront_access_token_test.rb +30 -0
  343. data/test/tax_service_test.rb +12 -0
  344. data/test/tender_transaction_test.rb +18 -0
  345. data/test/test_helper.rb +126 -0
  346. data/test/transaction_test.rb +18 -0
  347. data/test/usage_charge_test.rb +25 -0
  348. data/test/user_test.rb +18 -0
  349. data/test/variant_test.rb +73 -0
  350. data/test/webhook_test.rb +24 -0
  351. metadata +555 -0
data/Gemfile_ar60 ADDED
@@ -0,0 +1,5 @@
1
+ source "https://rubygems.org"
2
+
3
+ gemspec
4
+
5
+ gem "activeresource", "~> 6.0"
data/Gemfile_ar_main ADDED
@@ -0,0 +1,5 @@
1
+ source "https://rubygems.org"
2
+
3
+ gemspec
4
+
5
+ gem 'activeresource', git: 'git://github.com/rails/activeresource'
data/LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2009 "JadedPixel inc."
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,649 @@
1
+ Shopify API
2
+ ===========
3
+ [![Version][gem]][gem_url] [![Build Status](https://github.com/Shopify/shopify_api/workflows/CI/badge.svg?branch=master)](https://github.com/Shopify/shopify_api/actions)
4
+
5
+ [gem]: https://img.shields.io/gem/v/shopify_api.svg
6
+ [gem_url]: https://rubygems.org/gems/shopify_api
7
+
8
+ The Shopify API gem allows Ruby developers to access the admin section of Shopify stores programmatically.
9
+
10
+ The best way to consume the Shopify API is through GraphQL, which enables high volume mutations, bulk operations, and access to all new features.
11
+
12
+ The REST API is implemented as JSON over HTTP using all four verbs (GET/POST/PUT/DELETE). Each resource, like Order, Product, or Collection, has a distinct URL and is manipulated in isolation. In other words, we’ve tried to make the API follow the REST principles as much as possible.
13
+
14
+ - [Shopify API](#shopify-api)
15
+ - [Usage](#usage)
16
+ - [Requirements](#requirements)
17
+ - [Ruby version](#ruby-version)
18
+ - [Installation](#installation)
19
+ - [Getting Started](#getting-started)
20
+ - [1) Create an app](#1-create-an-app)
21
+ - [2A) Private Apps](#2a-private-apps)
22
+ - [2B) Public and Custom Apps](#2b-public-and-custom-apps)
23
+ - [3) Requesting access from a shop](#3-requesting-access-from-a-shop)
24
+ - [4) Trading your `code` for an access token.](#4-trading-your-code-for-an-access-token)
25
+ - [5) Activating the session](#5-activating-the-session)
26
+ - [6A) Making requests to the GraphQL API](#6a-making-requests-to-the-graphql-api)
27
+ - [Note: the GraphQL client has improved and changed in version 9.0. See the client documentation for full usage details and a [migration guide](docs/graphql.md#migration-guide).](#note-the-graphql-client-has-improved-and-changed-in-version-90-see-the-client-documentation-for-full-usage-details-and-a-migration-guide)
28
+ - [6B) Making requests to the REST API](#6b-making-requests-to-the-rest-api)
29
+ - [Console](#console)
30
+ - [Thread safety](#thread-safety)
31
+ - [Bulk Operations](#bulk-operations)
32
+ - [Example](#example)
33
+ - [1) Start the bulk operation](#1-start-the-bulk-operation)
34
+ - [Step 2) Poll the status of the bulk operation](#step-2-poll-the-status-of-the-bulk-operation)
35
+ - [Step 3) Retrieve your data](#step-3-retrieve-your-data)
36
+ - [Pagination](#pagination)
37
+ - [Breaking Change Notices](#breaking-change-notices)
38
+ - [Breaking change notice for version 8.0.0](#breaking-change-notice-for-version-800)
39
+ - [Breaking change notice for version 7.0.0](#breaking-change-notice-for-version-700)
40
+ - [Changes to ShopifyAPI::Session](#changes-to-shopifyapisession)
41
+ - [Changes to how to define resources](#changes-to-how-to-define-resources)
42
+ - [URL construction](#url-construction)
43
+ - [URLs that have not changed](#urls-that-have-not-changed)
44
+ - [Using Development Version](#using-development-version)
45
+ - [Logging](#logging)
46
+ - [Additional Resources](#additional-resources)
47
+ - [Copyright](#copyright)
48
+
49
+ # Usage
50
+
51
+ ## Requirements
52
+
53
+ All API usage happens through Shopify applications, created by either shop owners for their shops, or by Shopify Partners for use by other shop owners:
54
+
55
+ * Shop owners can create applications for themselves through their admin: https://shopify.dev/tutorials/authenticate-a-private-app-with-shopify-admin#generate-private-app-credentials
56
+ * Shopify Partners create applications through their admin: http://app.shopify.com/services/partners
57
+
58
+ For more information and detailed documentation about the API visit https://developers.shopify.com/
59
+
60
+ ### Ruby version
61
+
62
+ This gem requires Ruby 2.4 as of version 7.0.
63
+
64
+ **Note**: when we release the next major version, we will be dropping support for Ruby 2.4 and 2.5, which have now reached EOL, as per [the releases page](https://www.ruby-lang.org/en/downloads/branches/).
65
+
66
+ ## Installation
67
+
68
+ Add `shopify_api` to your `Gemfile`:
69
+
70
+ ```ruby
71
+ gem 'shopify_api'
72
+ ```
73
+
74
+ Or install via [gem](http://rubygems.org/)
75
+
76
+ ```bash
77
+ gem install shopify_api
78
+ ```
79
+
80
+ Once the gem is installed, it must be added to your project by placing the following line in your app :
81
+
82
+ ```ruby
83
+ require 'shopify_api'
84
+ ```
85
+
86
+ ## Getting Started
87
+
88
+ ShopifyAPI sessions need to be configured with a fully authorized URL of a particular store before they can start making API calls. To obtain that URL, you can follow these steps:
89
+
90
+ ### 1) Create an app
91
+
92
+ First, create a new application in either the partners admin or your store admin.
93
+
94
+ **Private apps** are used for merchant-owned scripts and apps that run silently in the background on a single shop. Private apps aren't able to render any content in the admin. Private apps are created through the store admin.
95
+
96
+ **Custom apps** are also used for a single shop, but they have access to [app extensions](https://shopify.dev/docs/app-extensions) that allow the app to render content in the admin and are managed and created through the partners dashboard.
97
+
98
+ **Public apps** can be installed on many stores, and can be added to the Shopify App Store to generate revenue for the developer.
99
+
100
+ For a private app, you'll need the API_KEY and the PASSWORD; otherwise, you'll need the API_KEY and SHARED_SECRET.
101
+
102
+ If you're not sure how to create a new application in the partner admin, visit the [tutorial in our documentation](https://shopify.dev/tutorials/authenticate-a-public-app-with-oauth#generate-credentials-from-your-partner-dashboard). For the instructions on generating a private app, visit the [tutorial on generating private credentials](https://shopify.dev/tutorials/authenticate-a-private-app-with-shopify-admin#generate-credentials-from-the-shopify-admin)
103
+
104
+ ### 2A) Private Apps
105
+
106
+ For a private App you just need to set the base site url as follows:
107
+
108
+ ```ruby
109
+ shop_url = "https://#{API_KEY}:#{PASSWORD}@#{SHOP_NAME}.myshopify.com"
110
+ ShopifyAPI::Base.site = shop_url
111
+ ShopifyAPI::Base.api_version = '<version_name>' # find the latest stable api_version here: https://shopify.dev/concepts/about-apis/versioning
112
+ ```
113
+
114
+ That's it; you're done! Next, skip to step 6 and start using the API!
115
+
116
+ ### 2B) Public and Custom Apps
117
+
118
+ For public and custom apps, you will need to supply two parameters to the Session class before you instantiate it:
119
+
120
+ ```ruby
121
+ ShopifyAPI::Session.setup(api_key: API_KEY, secret: SHARED_SECRET)
122
+ ```
123
+
124
+ Shopify maintains [`omniauth-shopify-oauth2`](https://github.com/Shopify/omniauth-shopify-oauth2), which simplifies and securely wraps the OAuth flow and interactions with Shopify. Using this gem is the recommended way to use OAuth authentication in your application.
125
+
126
+ ### 3) Requesting access from a shop
127
+
128
+ Public and Custom apps need an access token from each shop to access that shop's data. Getting an access token is a two-stage process. The first stage is to redirect the merchant to a **permission URL** to grant access to the app.
129
+
130
+ We've added the `create_permission_url` method to make this easier :
131
+
132
+ ```ruby
133
+ # We need to instantiate the session object before using it
134
+ shopify_session = ShopifyAPI::Session.new(domain: "#{SHOP_NAME}.myshopify.com", api_version: api_version, token: nil)
135
+
136
+ # Then, create a permission URL with the session
137
+ permission_url = shopify_session.create_permission_url(scope, "https://my_redirect_uri.com", { state: "My Nonce" })
138
+ ```
139
+
140
+ After creating the permission URL, the user should be directed to this URL to approve the app.
141
+
142
+ Under the hood, the `create_permission_url` method is preparing the app to make the following request :
143
+
144
+ ```
145
+ GET https://SHOP_NAME.myshopify.com/admin/oauth/authorize
146
+ ```
147
+
148
+ with the following parameters:
149
+
150
+ * ``client_id`` – Required – The API key for your app
151
+ * ``scope`` – Required – The list of required scopes (explained here: https://shopify.dev/tutorials/authenticate-with-oauth#scopes)
152
+ * ``redirect_uri`` – Required – The URL where you want to redirect the users after they authorize the client. The complete URL specified here must be identical to one of the Application Redirect URLs set in the app's section of the Partners dashboard.
153
+ * ``state`` – Optional – A randomly selected value provided by your application, which is unique for each authorization request. During the OAuth callback phase, your application must check that this value matches the one you provided during authorization. [This mechanism is essential for the security of your application](https://tools.ietf.org/html/rfc6819#section-3.6).
154
+ * ``grant_options`` - Optional - Set this parameter to `per-user` to receive an access token that respects the user's permission level when making API requests (called online access). We strongly recommend using this parameter for embedded apps.
155
+
156
+ ### 4) Trading your `code` for an access token.
157
+
158
+ Once authorized, the shop redirects the owner to the return URL of your application with a parameter named `code`. The value of this parameter is a temporary token that the app can exchange for a permanent access token.
159
+
160
+ Before you proceed, make sure your application performs the following security checks. If any of the checks fail, your application must reject the request with an error, and must not proceed further.
161
+
162
+ 1) Ensure the provided ``state`` is the same one that your application provided to Shopify in the previous step.
163
+ 2) Ensure the provided hmac is valid. The hmac is signed by Shopify, as explained below in the Verification section.
164
+ 3) Ensure the provided hostname parameter is a valid hostname, ends with myshopify.com, and does not contain characters other than letters (a-z), numbers (0-9), dots, and hyphens.
165
+
166
+ If all security checks pass, the authorization code can be exchanged once for a permanent access token. There is a method to make the request and get the token for you. Pass all the params received from the previous call and the method will verify the params, extract the temp code and then request your token:
167
+
168
+ ```ruby
169
+ token = shopify_session.request_token(params)
170
+ ```
171
+
172
+ This method will save the token to the session object and return it. All fields returned by Shopify, other than the access token itself, are stored in the session's `extra` attribute. For a list of all fields returned by Shopify, read [our OAuth documentation](https://shopify.dev/tutorials/authenticate-with-oauth#confirming-installation).
173
+
174
+ If you prefer to exchange the token manually, you can make a POST request to the shop with the following parameters :
175
+
176
+ ```
177
+ POST https://SHOP_NAME.myshopify.com/admin/oauth/access_token
178
+ ```
179
+
180
+ * ``client_id`` – Required – The API key for your app
181
+ * ``client_secret`` – Required – The shared secret for your app
182
+ * ``code`` – Required – The token you received in step 3
183
+
184
+ You'll get your permanent access token back in the response.
185
+
186
+ If you requested an access token that is associated with a specific user, you can retrieve information about this user from the `extra` hash:
187
+
188
+ ```ruby
189
+ # a list of all granted scopes
190
+ granted_scopes = shopify_session.extra['scope']
191
+ # a hash containing the user information
192
+ user = shopify_session.extra['associated_user']
193
+ # the access scopes available to this user, which may be a subset of the access scopes granted to this app.
194
+ active_scopes = shopify_session.extra['associated_user_scope']
195
+ # the time at which this token expires; this is automatically converted from 'expires_in' returned by Shopify
196
+ expires_at = shopify_session.extra['expires_at']
197
+ ```
198
+
199
+ For the security of your application, after retrieving an access token, you must validate the following:
200
+ 1) The list of scopes in `shopify_session.extra['scope']` is the same as you requested.
201
+ 2) If you requested an online-mode access token, `shopify_session.extra['associated_user']` must be present.
202
+ Failing either of these tests means the end-user may have tampered with the URL parameters during the OAuth authentication phase. You should avoid using this access token and revoke it immediately. If you use the [`omniauth-shopify-oauth2`](https://github.com/Shopify/omniauth-shopify-oauth2) gem, these checks are done automatically for you.
203
+
204
+ ### 5) Activating the session
205
+
206
+ Once you have a token, simply pass in the `token` and `extra` hash (optional) when creating the session object:
207
+
208
+ ```ruby
209
+ shopify_session = ShopifyAPI::Session.new(domain: "#{SHOP_NAME}.myshopify.com", token: token, api_version: api_version, extra: extra)
210
+ ```
211
+
212
+ The session must be activated before use:
213
+
214
+ ```ruby
215
+ ShopifyAPI::Base.activate_session(shopify_session)
216
+ ```
217
+
218
+ ### 6A) Making requests to the GraphQL API
219
+
220
+ The GraphQL API is the recommended way to consume the Shopify API. It is more fully-featured than REST, more performant, and future-proof. Whenever possible, GraphQL should be used to consume the Shopify API.
221
+
222
+ ###### Note: the GraphQL client has improved and changed in version 9.0. See the [client documentation](docs/graphql.md) for full usage details and a [migration guide](docs/graphql.md#migration-guide).
223
+
224
+ This library also supports Shopify's [GraphQL Admin API](https://shopify.dev/docs/admin-api/graphql/reference)
225
+ via integration with the [graphql-client](https://github.com/github/graphql-client) gem.
226
+ The authentication process (steps 1-5 under [Getting Started](#getting-started))
227
+ is identical. Once your session is activated, simply access the GraphQL client
228
+ and use `parse` and `query` as defined by
229
+ [graphql-client](https://github.com/github/graphql-client#defining-queries).
230
+
231
+ ```ruby
232
+ client = ShopifyAPI::GraphQL.client
233
+
234
+ SHOP_NAME_QUERY = client.parse <<-'GRAPHQL'
235
+ {
236
+ shop {
237
+ name
238
+ }
239
+ }
240
+ GRAPHQL
241
+
242
+ result = client.query(SHOP_NAME_QUERY)
243
+ result.data.shop.name
244
+ ```
245
+
246
+ [GraphQL client documentation](docs/graphql.md)
247
+
248
+ ### 6B) Making requests to the REST API
249
+
250
+ Responses to REST requests are returned as ActiveResource instances:
251
+
252
+ ```ruby
253
+ shop = ShopifyAPI::Shop.current
254
+
255
+ # Get a specific product
256
+ product = ShopifyAPI::Product.find(179761209)
257
+
258
+ # Create a new product
259
+ new_product = ShopifyAPI::Product.new
260
+ new_product.title = "Burton Custom Freestlye 151"
261
+ new_product.product_type = "Snowboard"
262
+ new_product.vendor = "Burton"
263
+ new_product.save
264
+
265
+ # Update a product
266
+ product.handle = "burton-snowboard"
267
+ product.save
268
+ ```
269
+
270
+ Alternatively, you can use #temp to initialize a Session and execute a command which also handles temporarily setting ActiveResource::Base.site:
271
+
272
+ ```ruby
273
+ products = ShopifyAPI::Session.temp(domain: "#{SHOP_NAME}.myshopify.com", token: token, api_version: api_version) do
274
+ ShopifyAPI::Product.find(:all)
275
+ end
276
+ ```
277
+
278
+ If you would like to run a small number of calls against a different API version you can use this block syntax:
279
+
280
+ ```ruby
281
+ ShopifyAPI::Session.temp(domain: "#{SHOP_NAME}.myshopify.com", token: token, api_version: '2019-04') do
282
+ ShopifyAPI::Product.find(:all) # find call against version `2019-04`
283
+
284
+ ShopifyAPI::Session.with_version(:unstable) do
285
+ ShopifyAPI::Product.find(:all) # find call against version `unstable`
286
+ end
287
+
288
+ ShopifyAPI::Product.find(:all) # find call against version `2019-04`
289
+ end
290
+ ```
291
+
292
+ If you want to work with another shop, you'll first need to clear the session:
293
+
294
+ ```ruby
295
+ ShopifyAPI::Base.clear_session
296
+ ```
297
+
298
+ ## Console
299
+
300
+ This package also supports the ``shopify-api`` executable to make it easy to open up an interactive console to use the API with a shop.
301
+
302
+ 1. Install the ``shopify_api_console`` gem.
303
+
304
+ ```bash
305
+ gem install shopify_api_console
306
+ ```
307
+
308
+ 2. Obtain a private API key and password to use with your shop (step 2A in "Getting Started")
309
+
310
+ 3. Use the ``shopify-api`` script to save the credentials for the shop to quickly login.
311
+
312
+ ```bash
313
+ shopify-api add yourshopname
314
+ ```
315
+
316
+ Follow the prompts for the shop domain, API key and password.
317
+
318
+ 4. Start the console for the connection.
319
+
320
+ ```bash
321
+ shopify-api console
322
+ ```
323
+
324
+ 5. To see the full list of commands, type:
325
+
326
+ ```bash
327
+ shopify-api help
328
+ ```
329
+
330
+ ## Thread safety
331
+
332
+ ActiveResource is threadsafe as of version 4.1 (which works with Rails 4.x and above).
333
+
334
+ If you were previously using Shopify's [activeresource fork](https://github.com/shopify/activeresource), then you should remove it and use ActiveResource 4.1.
335
+
336
+ ## Bulk Operations
337
+
338
+ With the GraphQL Admin API, you can use bulk operations to asynchronously fetch data in bulk. The API is designed to reduce complexity and improve performance when dealing with large volumes of data.
339
+
340
+ Instead of manually paginating results and managing a client-side throttle, you can instead run a bulk query operation. Shopify’s infrastructure does the hard work of executing your query, and then provides you with a URL where you can download all of the data.
341
+
342
+ Apps are limited to running a single bulk operation at a time per shop. When the operation is complete, the results are delivered in the form of a JSONL file that Shopify makes available at a URL.
343
+
344
+ ### Example
345
+
346
+ The following mutation queries the products connection and returns each product's ID and title.
347
+
348
+ #### 1) Start the bulk operation
349
+
350
+ ```ruby
351
+ client = ShopifyAPI::GraphQL.client
352
+
353
+ PRODUCTS_BULK_QUERY = client.parse <<-'GRAPHQL'
354
+ mutation {
355
+ bulkOperationRunQuery(
356
+ query: """
357
+ {
358
+ products {
359
+ edges {
360
+ node {
361
+ id
362
+ title
363
+ }
364
+ }
365
+ }
366
+ }
367
+ """
368
+ ) {
369
+ bulkOperation {
370
+ id
371
+ status
372
+ }
373
+ userErrors {
374
+ field
375
+ message
376
+ }
377
+ }
378
+ }
379
+ GRAPHQL
380
+
381
+ result = client.query(PRODUCTS_BULK_QUERY)
382
+ ```
383
+ #### Step 2) Poll the status of the bulk operation
384
+
385
+ While the operation is running, you need to poll to see its progress using the `currentBulkOperation` field. The `objectCount` field increments to indicate the operation's progress, and the `status` field returns whether the operation is completed.
386
+
387
+ ```ruby
388
+ BULK_POLL_QUERY = client.parse <<-'GRAPHQL'
389
+ query {
390
+ currentBulkOperation {
391
+ id
392
+ status
393
+ errorCode
394
+ createdAt
395
+ completedAt
396
+ objectCount
397
+ fileSize
398
+ url
399
+ partialDataUrl
400
+ }
401
+ }
402
+ GRAPHQL
403
+
404
+ result = client.query(BULK_POLL_QUERY)
405
+ ```
406
+
407
+ The JSON response of a completed query will look like this :
408
+
409
+ ```json
410
+ {
411
+ "data": {
412
+ "currentBulkOperation": {
413
+ "id": "gid:\/\/shopify\/BulkOperation\/720918",
414
+ "status": "COMPLETED",
415
+ "errorCode": null,
416
+ "createdAt": "2019-08-29T17:16:35Z",
417
+ "completedAt": "2019-08-29T17:23:25Z",
418
+ "objectCount": "57",
419
+ "fileSize": "358",
420
+ "url": "https:\/\/storage.googleapis.com\/shopify\/dyfkl3g72empyyoenvmtidlm9o4g?<params>",
421
+ "partialDataUrl": null
422
+ }
423
+ },
424
+ ...
425
+ }
426
+ ```
427
+
428
+ #### Step 3) Retrieve your data
429
+
430
+ Since bulk operations are specifically designed to fetch large datasets, we’ve chosen the [JSON Lines](http://jsonlines.org/) (JSONL) format for the response data so that clients have more flexibility in how they consume the data. JSONL is similar to JSON, but each line is a valid JSON object. The file can be parsed one line at a time by using file streaming functionality to avoid issues with memory consumption.
431
+
432
+ A JSONL output file is available for download at the URL specified in the `url` field when the operation completes.
433
+
434
+ Each line in the file is a node object returned in a connection. If a node has a nested connection, then each child node is extracted into a new object on the next line. Below is an example of a JSONL file.
435
+
436
+ ```json
437
+ {"id":"gid://shopify/Product/1921569226808"}
438
+ {"id":"gid://shopify/ProductVariant/19435458986040","title":"70","__parentId":"gid://shopify/Product/1921569226808"}
439
+ {"id":"gid://shopify/Product/1921569259576"}
440
+ {"id":"gid://shopify/ProductVariant/19435459018808","title":"34","__parentId":"gid://shopify/Product/1921569259576"}
441
+ {"id":"gid://shopify/Product/1921569292344"}
442
+ {"id":"gid://shopify/ProductVariant/19435459051576","title":"Default Title","__parentId":"gid://shopify/Product/1921569292344"}
443
+ {"id":"gid://shopify/Product/1921569325112"}
444
+ {"id":"gid://shopify/ProductVariant/19435459084344","title":"36","__parentId":"gid://shopify/Product/1921569325112"}
445
+ {"id":"gid://shopify/Product/1921569357880"}
446
+ {"id":"gid://shopify/ProductVariant/19435459117112","title":"47","__parentId":"gid://shopify/Product/1921569357880"}
447
+ {"id":"gid://shopify/ProductVariant/19435458986123","title":"52","__parentId":"gid://shopify/Product/1921569226808"}
448
+ ```
449
+
450
+ Here's a simple example in Ruby to demonstrate the proper way of loading and parsing a JSONL file:
451
+
452
+ ```ruby
453
+ # Efficient: reads the file a single line at a time
454
+ File.open(file) do |f|
455
+ f.each do |line|
456
+ JSON.parse(line)
457
+ end
458
+ end
459
+
460
+ # Inefficient: reads the entire file into memory
461
+ jsonl = File.read(file)
462
+
463
+ jsonl.each_line do |line|
464
+ JSON.parse(line)
465
+ end
466
+ ```
467
+
468
+ ## Pagination
469
+
470
+ Shopify uses [Relative cursor-based pagination](https://shopify.dev/tutorials/make-paginated-requests-to-rest-admin-api) to provide more than a single page of results.
471
+
472
+ ```ruby
473
+ products = ShopifyAPI::Product.find(:all, params: { limit: 50 })
474
+ process_products(products)
475
+ while products.next_page?
476
+ products = products.fetch_next_page
477
+ process_products(products)
478
+ end
479
+ ```
480
+
481
+ If you want cursor-based pagination to work across page loads, or wish to distribute workload across multiple background jobs, you can use #next_page_info or #previous_page_info methods that return strings:
482
+
483
+ ```
484
+ first_batch_products = ShopifyAPI::Product.find(:all, params: { limit: 50 })
485
+ second_batch_products = ShopifyAPI::Product.find(:all, params: { limit: 50, page_info: first_batch_products.next_page_info })
486
+ ...
487
+ ```
488
+
489
+ Relative cursor pagination is currently available for all endpoints using the `2019-10` and later API versions.
490
+
491
+ Apps using older versions of the API may have used page-based pagination (deprecated starting in 2019-10) :
492
+
493
+ ```ruby
494
+ page = 1
495
+ products = ShopifyAPI::Product.find(:all, params: { limit: 50, page: page })
496
+ process_products(products)
497
+ while(products.count == 50)
498
+ page += 1
499
+ products = ShopifyAPI::Product.find(:all, params: { limit: 50, page: page })
500
+ process_products(products)
501
+ end
502
+ ```
503
+
504
+ # Breaking Change Notices
505
+
506
+ ## Breaking change notice for version 8.0.0
507
+
508
+ Version 7.0.0 introduced ApiVersion, and known versions were hardcoded into the gem. Manually defining API versions is no longer required for versions not listed in the gem. Version 8.0.0 removes the following:
509
+ * `ShopifyAPI::ApiVersion::Unstable`
510
+ * `ShopifyAPI::ApiVersion::Release`
511
+ * `ShopifyAPI::ApiVersion.define_version`
512
+
513
+ The following methods on `ApiVersion` have been deprecated:
514
+ - `.coerce_to_version` deprecated. use `.find_version`
515
+ - `.define_known_versions` deprecated. Use `.fetch_known_versions`
516
+ - `.clear_defined_versions` deprecated. Use. `.clear_known_versions`
517
+ - `.latest_stable_version` deprecated. Use `ShopifyAPI::Meta.admin_versions.find(&:latest_supported)` (this fetches info from Shopify servers. No authentication required.)
518
+ - `#name` deprecated. Use `#handle`
519
+ - `#stable?` deprecated. Use `#supported?`
520
+
521
+ Version 8.0.0 introduces a _version lookup mode_. By default, `ShopifyAPI::ApiVersion.version_lookup_mode` is `:define_on_unknown`. When setting the api_version on `Session` or `Base`, the `api_version` attribute takes a version handle (i.e. `'2019-07'` or `:unstable`) and sets an instance of `ShopifyAPI::ApiVersion` matching the handle. When the version_lookup_mode is set to `:define_on_unknown`, any handle will naïvely create a new `ApiVersion` if the version is not in the known versions returned by `ShopifyAPI::ApiVersion.versions`.
522
+
523
+ To ensure you're setting only known and active versions, call :
524
+
525
+ ```ruby
526
+ ShopifyAPI::ApiVersion.version_lookup_mode = :raise_on_unknown
527
+ ShopifyAPI::ApiVersion.fetch_known_versions
528
+ ```
529
+
530
+ Known and active versions are fetched from https://app.shopify.com/services/apis.json and cached. Trying to use a version outside this cached set will raise an error. To switch back to naïve lookup and create a version if one is not found, call `ShopifyAPI::ApiVersion.version_lookup_mode = :define_on_unknown`.
531
+
532
+
533
+ ## Breaking change notice for version 7.0.0
534
+
535
+ ### Changes to ShopifyAPI::Session
536
+ When creating sessions, `api_version`is now required and uses keyword arguments.
537
+
538
+ To upgrade your use of ShopifyAPI you will need to make the following changes.
539
+
540
+ ```ruby
541
+ ShopifyAPI::Session.new(domain, token, extras)
542
+ ```
543
+ is now
544
+ ```ruby
545
+ ShopifyAPI::Session.new(domain: domain, token: token, api_version: api_version, extras: extras)
546
+ ```
547
+ Note `extras` is still optional. The other arguments are required.
548
+
549
+ ```ruby
550
+ ShopifyAPI::Session.temp(domain, token, extras) do
551
+ ...
552
+ end
553
+ ```
554
+ is now
555
+ ```ruby
556
+ ShopifyAPI::Session.temp(domain: domain, token: token, api_version: api_version) do
557
+ ...
558
+ end
559
+ ```
560
+
561
+ For example, if you want to use the `2019-04` version, you will create a session like this:
562
+ ```ruby
563
+ session = ShopifyAPI::Session.new(domain: domain, token: token, api_version: '2019-04')
564
+ ```
565
+ if you want to use the `unstable` version, you will create a session like this:
566
+ ```ruby
567
+ session = ShopifyAPI::Session.new(domain: domain, token: token, api_version: :unstable)
568
+ ```
569
+
570
+ ### Changes to how to define resources
571
+
572
+ If you have defined or customized Resources, classes that extend `ShopifyAPI::Base`:
573
+ The use of `self.prefix =` has been deprecated; you should now use `self.resource =` and not include `/admin`.
574
+ For example, if you specified a prefix like this before:
575
+ ```ruby
576
+ class MyResource < ShopifyAPI::Base
577
+ self.prefix = '/admin/shop/'
578
+ end
579
+ ```
580
+ You will update this to:
581
+ ```ruby
582
+ class MyResource < ShopifyAPI::Base
583
+ self.resource_prefix = 'shop/'
584
+ end
585
+ ```
586
+
587
+ ### URL construction
588
+
589
+ If you have specified any full paths for API calls in find
590
+ ```ruby
591
+ def self.current(options={})
592
+ find(:one, options.merge(from: "/admin/shop.#{format.extension}"))
593
+ end
594
+ ```
595
+ would be changed to
596
+
597
+ ```ruby
598
+ def self.current(options = {})
599
+ find(:one, options.merge(
600
+ from: api_version.construct_api_path("shop.#{format.extension}")
601
+ ))
602
+ end
603
+ ```
604
+
605
+ ### URLs that have not changed
606
+
607
+ - OAuth URLs for `authorize`, getting the `access_token` from a code, `access_scopes`, and using a `refresh_token` have _not_ changed.
608
+ - get: `/admin/oauth/authorize`
609
+ - post: `/admin/oauth/access_token`
610
+ - get: `/admin/oauth/access_scopes`
611
+ - URLs for the merchant’s web admin have _not_ changed. For example: to send the merchant to the product page the url is still `/admin/product/<id>`
612
+
613
+ # Using Development Version
614
+
615
+ Download the source code and run:
616
+
617
+ ```bash
618
+ bundle install
619
+ bundle exec rake test
620
+ ```
621
+
622
+ or if you'd rather use docker just run:
623
+ ```bash
624
+ docker run -it --name shopify_api -v "$PWD:/shopify_api" -w="/shopify_api" ruby:2.6 bundle install
625
+ docker exec -it shopify_api bash
626
+ ```
627
+
628
+ or you can even use our automated rake task for docker:
629
+ ```bash
630
+ bundle exec rake docker
631
+ ```
632
+
633
+ # Logging
634
+
635
+ Enable ActiveResource's logger with
636
+
637
+ `export SHOPIFY_LOG_PATH={your_log_path}`
638
+
639
+ This will log to a file at the given path, relative to the current project directory.
640
+
641
+ # Additional Resources
642
+
643
+ * [GraphQL API Reference](https://shopify.dev/docs/admin-api/graphql/reference)
644
+ * [REST API Reference](https://shopify.dev/docs/admin-api/rest/reference)
645
+ * [Ask questions on the forums](https://community.shopify.com/c/Shopify-Community/ct-p/en?profile.language=en)
646
+
647
+ # Copyright
648
+
649
+ Copyright (c) 2014 "Shopify Inc.". See LICENSE for details.