django-globeeA Django app for integrating GloBee Payments

联合创作 · 2023-09-18 14:47

django-globee

GitHub license PyPI version Coverage Status Downloads

django-globee is a Django app to integrate GloBee Payments.

You can find the GloBee API docs here.

Quick start

  1. Add globee to your INSTALLED_APPS setting like this:
    INSTALLED_APPS = [
        ...
        'globee',
    ]
  1. Include the globee URLconf in your project urls.py like this:
    path('globee/', include('globee.urls')),
  1. Include your globee key and test or live env in your project settings.py
    GLOBEE_AUTH_KEY = "YOUR GLOBEE X-AUTH-KEY"
    GLOBEE_TESTNET = True # set this to False in production mode

    # False: IPN view will respond with status code "400" if an "KeyError", "ValueError" or "ValidationError" occurs
    # True: IPN view will always respond with status code "200"
    GLOBEE_PARANOID_MODE = False # optional (default: False)

    # False: saves the IPN response in the database without further verify checks. see docs on how to verify the payment yourself.
    # True: fetches the payment information directly from GloBee after the IPN view was called
    GLOBEE_AUTO_VERIFY = False # optional (default: False)
  1. Run python manage.py migrate to create the globee models.

examples

see Docs

浏览 4
点赞
评论
收藏
分享

手机扫一扫分享

编辑
举报
评论
图片
表情
推荐
点赞
评论
收藏
分享

手机扫一扫分享

编辑
举报