Tag: Ionic

  • Cordova In App Purchases – Validating Subscriptions

    I recently built a fairly complex in app purchase system for a client that uses recurring subscriptions. It allows users to purchase a recurring subscription which gives them access to membership content in the app. Recurring purchases are quite a bit more complex than one-time purchases, because you have to keep track of when the…

  • Building a WooCommerce REST API Mobile App

    Recently I updated my WP Ionic project to include WooCommerce REST API support, just for fun. It’s become a pretty cool little app, so I thought I’d share it along with some things I learned. Here’s the tl;dr: It’s fast, really fast Variable products, shipping, and payments are the pain points There are pros and…

  • How to Process Payments with the WooCommerce REST API and Stripe

    An interesting thing I found out while working with the WooCommerce REST API is that you can’t process payments. You can create orders, but you can’t actually send credit card details and make a payment. If you are making a WooCommerce mobile app this makes things a bit more complicated. I didn’t find many tutorials…