You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
1. In order to access a shop's data, apps need an access token from that specific shop. We need to authenticate with that shop using OAuth, which we can start in the following way:
52
54
53
55
```python
54
56
shop_url ="SHOP_NAME.myshopify.com"
55
-
api_version ='2020-10'
57
+
api_version ='2024-01'
56
58
state = binascii.b2a_hex(os.urandom(15)).decode("utf-8")
Some resources such as`Fulfillment` are prefixed by a parent resource in the Shopify API (e.g. `orders/450789469/fulfillments/255858046`). In order to interact with these resources, you must specify the identifier of the parent resource in your request.
@@ -242,7 +250,7 @@ python setup.py test
242
250
## Relative Cursor Pagination
243
251
Cursor based pagination support has been added in 6.0.0.
0 commit comments