Development discussions around Shopify APIs
Hello,
I'm trying to create a recurring charge in my Shopify Django app, based on Shopify's Django app repo
However, I can't figure out how to get the recurring charge working, I have the following code so far, with all url's setup, but I get the following error:
The view shopify_app.decorators.confirm_charge didn't return an HttpResponse object. It returned None instead.
I'm not sure where to redirect to or how to make the POST and GET requests work in Django redirect to the correct Shopify confirmation url. Any help or pointers in the right direction would be much appreciated.
I followed the example from the forum found here, but unfortunately the part about the confirmation url is missing.
@shop_login_required def confirm_charge(request, *args, **kwargs): shopify_url = request.session['shopify']['shop_url'] token = request.session['shopify']['access_token'] session = shopify.Session(shopify_url, token) shopify.ShopifyResource.activate_session(session) charge = shopify.RecurringApplicationCharge() charge.test = True charge.return_url = shopify_url + "/admin/<app_name>/activate-plan" charge.price = 9.99 charge.name = "Test charge" charge.save() print charge.attributes return process_charge(request) @shop_login_required def process_charge(request): shop = request.REQUEST.get('confirmation_url')
## shop prints: None
## the script gets to this part:
print "process charge" return activate_charge(request)
@shop_login_required def activate_charge(request): shopify.ApplicationCharge().activate
What happens when you instead `return redirect(charge.confirmation_url)` in confirm_charge?
That looks to be the Django way to handle redirects. Remember you want to send the client to the confirmation_url, you don't need to fetch anything from there using your back end. When the client is redirected to the confirmation_url, they accept the charge and are redirected from Shopify to your specified `return_url`.
Hope that helps.
Cheers.
Alex | Shopify
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution
- To learn more visit the Shopify Help Center or the Shopify Blog
User | RANK |
---|---|
8 | |
7 | |
3 | |
3 | |
3 |
Connect your PayPal account to allow your customers to checkout using the PayPal gateway a...
ByYour online store speed can enhance your store’s discoverability, boost conversion rates a...
ByShopping is at our fingertips with mobile devices. Is your theme optimized to be user-frie...
By