No content to show
User Activity
Hey @usaamatahir . I hope you're doing great. We want to use Stripe as a payment Gateway for draft order API. Could you walk me thorugh how this could be achived? I can't find documentation related to this. Thank you in advance.
07-16-2024
Hey community. As we know Shopify has deprecated the Storefront Checkout APIs, so we must use the Cart API. Anyone knows how to complete a cart, like we used to using the Checkout API resources? We are using Stripe to complete the checkout programmat...
05-17-2024
We managed to solve this issue. It was basically the new version of shopify appbridge. Here's the migration guideWe're using the last shopify api version (2024-04).
I could solve this issue adding a middleware for the root route (/) as this is my config url route. This is the code I used in the middleware to solve the issue and finally complete the tests for app submission.So in case your App URL is https://your...
04-29-2024
I'm facing the same issue. I'm using js and the last Shopify version. The fact is that when I run the application locally using the shopify library, it works like a charm, but when I deploy the application to a remote server it causes the redirection...
Indeed you must be a Sales Channel and have the Payment Processing enabled. In case you meet these requirements:- Are you using a testing store? If yes, you should check if you have bogus active (testing payment processing). If you enabled bogus afte...
Hey Dan. I hope this helps.This is the query you can use to get the shopifyPaymentsAccountId:shop {
id
name
paymentSettings {
shopifyPaymentsAccountId
}
} Remember, you must query to shopify storefront api (graphql). Also you ...
Any workaround on this?
I finally made it. Using express i created a middleware to write Content-Security-Policy header as they required on absolutely ALL endpoints, with the next code:export const CspMiddleware = async (req: Request, res: Response, next: NextFunction) => {...
Sure! And I still have the problem. I think the preflight check (OPTIONS verb) is my headache. Let's keep this post up to date to help other devs to save time
Thank you for your response, Denis. As i see, we must set this header in each endpoint concerned to Shopify. Am i right?
Hey there. I'm experiencing the same problem. What worked for you?
Hey community. I'm experiencing problems when i try to install an app with the following permission:read_merchant_approval_signalsIt throws a 400 error:Oauth error missing_shopify_permission: read_merchant_approval_signals I hope someone could help m...
Hey everyone!I'm using the shopify graphql api (appSubscriptionCreate mutation) to create an app subscription pay as you go. It used to work but i've been testing the app today and for some reason it doesn't work anymoreI'm getting this message after...