Apr 5, 2021
I noticed that there is a graphql mutation called OrderSendInvoiceEmail that can be triggered by creating a 'pending payment' order, selecting 'Collect Payment' and clicking 'Send Invoice'. Are ...
Apr 30, 2020
I'm not entirely sure what is going wrong with my app suddenly. I have some merchants who have installed the app, and on my end I can see the Recurring Charged has been activated. Then two days later...
No content to show
User Activity
Seems like a bug in my opinion. If I do second forEach action and then have a text field i can access the variable during the loop just fine. But if it's a customer reference it freaks out as if it's not there.
You literally can't do that... am I missing something? There is no way to connect "update a contact" action to either the for each action, nor the 'add customer tags' action.
How do you nest actions in the same loop? I can't do multiple actions from one for each it seems, and my understanding is the 'then' happens after it finishes looping through everything.
Is this a bug or intended behavior? I'm trying to create a flow that does the following:1. Gets all customers without a specific tag2. Loop through each customer and update their contact on an external app3. Loop each customer again and update their...
05-05-2022
Thanks @awwdam appreciate the fast action on this one.
05-05-2022
My app suddenly has been getting this issue too. I have many clients mad at me for it even though it's not my app's bug. Please look into this again. I haven't changed anything in my app's oauth process and it was working perfectly until about May 3r...
I have a number of extremely high-value business partners waiting on this functionality. Please Shopify API Team! Please add these functions to the public API.They already exist in graphQL but are locked behind access controls.Please add the ability ...
03-16-2021
I also need a transfer API or graphQL endpoint. Kinda confused why this functionality doesn't exist yet. Even the functionality to 'import' or 'export' transfers would be helpful.
@dsingh replying to your "Considering that now there is no need for use of cookies. Is there a way to retrieve the myshopify.com domain an embedded app is loaded in? That is probably the last part which is needed before embedded apps can be truly coo...
@Michael_Ragalie yeah it's pretty solid already honestly, I have it running in production with my app. The only issue I really have is you guys need to do some better documentation for app bridge in general. I wanted to know more about the new app br...
Honestly, the flow charts on https://shopify.dev/tools/app-bridge/authentication sum up the entire concept very well once you understand both the oAuth flow on Shopify with App Bridge, and the underlying principals of how JWTs work.
Not sure what's with the aggro attitude guys. I don't work for Shopify, I'm just another developer trying to provide some help as someone who has experience with JWTs and implemented the solution that Shopify has put into beta. My example I gave a fe...
I think you both aren't understanding the point of JWT. It's stateless authentication. It has no knowledge if you are storing offline or online access tokens behind the scenes. A JWT sub will always be a user id because it's the user who is invoking ...
@dsingh In the 5 years I've used Shopify I've never seen a myshopify url changed or recycled into a new store. When you try to signup using one that was ever used before it gives an error. Even if it were recycled at some point, in that scenario, you...
@dsingh JWT is separate from the access token. You generate the access token, online or offline, during your oauth callback and handle storing it in your db depending on if it's online or offline. You always should be storing the myshopify domain imo...