shopify-api

Problem in setting up Shopify RecurringApplicationCharge in Django App

Problem in setting up Shopify RecurringApplicationCharge in Django App Question: I am following app structure with reference to https://github.com/Shopify/shopify_django_app repository. I am trying to set up billing for my app using shopify.RecurringApplicationCharge. @shop_login_required def buy_plan(request, id): plan = PlanTable.objects.get(id=id) context = {‘plans’: plan} charge = shopify.RecurringApplicationCharge() charge.name = plan.name charge.price = plan.price charge.test = True …

Total answers: 1

Error After Uninstall in Shopify App Using Django

Error After Uninstall in Shopify App Using Django Question: I am taking reference from https://github.com/Shopify/shopify_django_app repository to make a shopify app. The problem is that the app installs properly and works fine but the problem is that if we access App URL after it is uninstalled from shopify store, it returns the following error. I …

Total answers: 1

How to set shopify order to fulfilled?

How to set shopify order to fulfilled? Question: Set-up I have a Shopify store with an unfulfilled order and have access to the store’s REST API. The order has been shipped and I have its tracking_number, tracking_url and the transport_company. I want to use the REST API to set the order to fulfilled and send …

Total answers: 2