Python/Django: Which authorize.net library should I use?

前端 未结 6 866
滥情空心
滥情空心 2021-01-30 04:29

I need authorize.net integration for subscription payments, likely using CIM. The requirements are simple - recurring monthly payments, with a few different price points. Custom

6条回答
  •  盖世英雄少女心
    2021-01-30 05:13

    Long story short, none of the existing solutions met my needs. They were either unmaintained, uncommented, untested, or lacked saved cards. So of course I built my own solution and open-sourced it:

    AuthorizeSauce: https://github.com/jeffschenck/authorizesauce

    It handles basic transactions (the AIM API), saved cards (the CIM API), and recurring payments (the ARB API). It is fully documented and has a full test suite.

    I expect the original poster has long since moved on, but if it can help anyone else avoid some of the pain of payment processing, I'd be overjoyed.

提交回复
热议问题