Alex Richter commented on API BUG - POST NEW IMAGE TO PRODUCT IS MISSING...
Hey Jason,Thanks for the heads up. That doesn't seem right. I've reported this to our engineering team to look into it and I'll follow up here with new developments as they become available.Cheers,
View ArticleAlex Richter commented on My First API
You'll want to ensure your brother is not making the API requests with cookies, otherwise we redirect to an admin log in page if cookies are detected. This is easier to do with an HTTP client like...
View ArticleAlex Richter commented on Doubts and limitations creating new carrier service
Hey Paul,I have no issues selecting Chile from the list of countries in shipping zones, and I imagine this might be at least part of the reason for why you can't provide rates(?)Would you mind sharing...
View ArticleAlex Richter commented on shopify_app + Heroku 500 error on callback
I'm not sure if this is the exact callback URL but it looks like the parameters are separated by commas? If that's the case I imagine it would definitely be part of the problem. What version of...
View ArticleAlex Richter commented on Unauthorized 401 when using Sidekiq
That would likely mean Sidekiq is not making requests with your access token. Have you triple checked the access token you are providing in your request headers? You might need to instantiate sessions...
View ArticleAlex Richter commented on Oauth error invalid_request: The redirect_uri is...
Can you provide an X-Request-Id? You'll see this in your response headers and I'll be able to use this to see what might have happened (within the last 14 days).Cheers.
View ArticleAlex Richter commented on Missing parameter error when using ScriptTag
Is this issue still occurring for you? If so, could you post a new response/x-request-id? This one will have occurred a little too far back for me to see it.Cheers.
View ArticleAlex Richter commented on Retrieving information about deleted products
Products are hard deleted in our database, so outside of piecing some information together from orders or etc, the remaining information will not be accessible.Cheers.
View ArticleAlex Richter commented on Webhook Validation
I don't have a .Net code snippet to share, but the algorithm can be seen in Ruby and PHP here: https://help.shopify.com/en/api/getting-started/webhooks#verify-webhookYou are correct in that you use the...
View ArticleAlex Richter commented on Embedded App Navigation does not appear.
I would need an example shop to see what might be going on. From what I can tell you should have nav links with that set up. A shop ID will do just fine, or you could give me your app's installation...
View ArticleAlex Richter commented on How to get embedded app's name or its admin...
Public apps are identified in the URL by their handle which is typically a dash-separated lower-cased name of the app. Unpublished apps are instead identified by their API key. There is not an endpoint...
View ArticleAlex Richter commented on Shopify Webhooks - Out-of-the-box framework/solution
As far as security goes, you for the most part just want to validate the `hmac` coming in with the webhook as a main priority. You could derive some inspiration from the shopify_app rails framework:...
View ArticleAlex Richter commented on Get Product by Id - as no product handle present...
I think GraphQL might be able to help you here. This allows you to gather connected resources in single queries. For example:{ orders(first: 50) { edges { cursor node { createdAt lineItems(first:5) {...
View ArticleBasic Auth Without Cookies using python requests by real_jon_mayer
Hi-I'm trying to set up a private app to modify order_tags in certain scenarios, which involves using the dreaded "put" method (only dreaded because of...
View ArticleDid Buy Button code change? apiKey vs. storefrontAccessToken?? by...
Earlier today I noticed some of my Buy Buttons not showing up... I double and triple checked that I was copying the code exactly as was generated by the Shopify "Buy Button" Sales Channel App (or...
View ArticleShopMaster ERP commented on Is Shopify GraphiQL APP necessary for a public APP?
Thanks, Karl. We have fixed the issue. Appreciate your kindly helping.
View ArticleGraphQL API is not working for one of our users by ShopMaster ERP
Hi TeamWe integrated the GraphQL API of Shopify for bulk creating/updating Inventory and Prices of products. It's working for most of our APP's users, but one of our users faced an issue that the...
View ArticleJazeps Basko commented on How to get embedded app's name or its admin...
Thanks Alex!The API key based link is news to me and it's more than good enough! What I observed is that after I had renamed an actively developed app, its "homepage" URL did not change so I cannot...
View ArticleJazeps Basko commented on Basic Auth Without Cookies using python requests
Your code doesn't show how you actually make the request with requests. Could you by any chance be using a `requests.Session` instance which you have used before and got some cookies on it? Because it...
View Article