I am testing a Shopify Fulfillment App that should be taking in orders and fulfilling their line items. In Shopify when creating a product, you can connect a Fulfillment Service to either the Product...
Feb 18, 2020
I am updating my app from 2019-10 to 2020-01 but wondering how to do this appropriately? I am using ROR with the shopify app and api gem. I set the initializers/shopify_app.rb &nbs...
Oct 7, 2019
This is for a standalone app.... On a successful app installation, i redirect to the login page, whether or not a user in the standalone app is logged in or not. I then have them eithe...
From partner dashboard, Go to Apps, Choose App, Install on Dev store Install Remove installed Shop from Applications Shop Model Uninstall Repeat The reinstall attempt will byp...
When i create orders from draft with a shipping address, a location_id doesn't pass through with the order. When i create orders from draft without a shipping address, location_id passes through. &...
I am able to start a session with something along the lines of: shop = Shop.find_by(user_id: user.id) session = ShopifyApp::SessionRepository.retrieve(shop.id) if session.valid? ...
Jun 4, 2019
We updated the gem to the latest version and reran all of the generation files... controllers, models, initializers, etc. When installing an app We get the following errors: 2019-06...
I have an application where Users (email login auth) and Shops are associated. I want when Users sign in, for the Shop to create a new session. This way Users can login without needing to...
Issue: Unable to fetch Orders within the shopify app. I updated my scopes to: read_products, read_orders, write_orders, read_fulfillment, write_fulfillment, read_shipping, write_shipping with no luck...
No content to show
User Activity
That is very similar and good to see other devs are doing alike code You don't have any worries about Redis or your background worker DB going down temporarily at all? I'm starting to think that using a background job for the webhook may not be necce...
If I made one call to get all Orders from the previous day, say the last day had 1000 orders. Would this be 1000 requests? Or would this be considered one? I have a cron job every 24 hours to get any orders that were possibly missed from the webhook...
I am currently in development and have implemented both a create and update webhook for Orders and a once per day cron job for Orders in case a webhook was missed or some error happened. I am wondering what ya'll do Should I be worried about API limi...
I just added update webhooks and they fire directly after my create webhooks. Not sure why but it happens. To anyone in Shopify staff or devs out there with a lot of exp., is this expected behavior?