No content to show
User Activity
I changed my implementation to offer different price plans (basic, advanced, pro, ...). For my use case, it was far away from perfect, but I passed the review process.
My app goes through the standard OAuth and billing flow during installation and creates an AppSubscription, including a recurring billing ($9 every 30 days) and a usage billing charge ($50 capped). If the user accepts, I use the returned subscription...
Or for those using Hooks: import React, { useContext } from 'react';
import { AppBridgeContext } from '@shopify/app-bridge-react/context';
import { Redirect } from '@shopify/app-bridge/actions';
export default (props) => {
const polaris = useConte...