Discussing APIs and development related to customers, discounts, and order management.
Solved! Go to the solution
This is an accepted solution.
SHOPIFY_API_SCOPE = os.environ.get('SHOPIFY_API_SCOPE', 'read_products,write_products,read_orders,write_orders').split(',')
yes before installation i changed permission as above write_orders.
The OAuth process where the Shopify user accepts the prompted access permissions should have this option included. Your app that you have created should include this, so that when the user completes the OAuth process they have granted access to all of the proper scopes.
This is an accepted solution.
SHOPIFY_API_SCOPE = os.environ.get('SHOPIFY_API_SCOPE', 'read_products,write_products,read_orders,write_orders').split(',')
yes before installation i changed permission as above write_orders.