No content to show
User Activity
This came up just today a few minutes back. However, it got automatically resolved within a few minutes.
07-31-2024
Yes, they do not expire if they are offline access token. They are created once your app is installed to a merchant store. When the merchant uninstalls the app, the offline access token gets destroyed. https://shopify.dev/docs/apps/build/authenticati...
This helped me as well. Thank you for sharing the solution. However, the shopify documentation : https://shopify.dev/docs/api/shopify-app-remix/v1/apis/billing#require-using-a-plan-selection-page does not mention it like so.
02-14-2024
There is an issue with the Shopify API documentation. The solution is to include isTest: false in billing.request as well. Hence, the solution could be : await billing.require({
plans: [MONTHLY_PLAN],
isTest: false,
onFailure: async...