Skip to main content

A django-payments backend for the Redsys payment gateway

Project description

django-payments-redsys

A RedsysSermepa payment gateway backend for django-payments.

Install

pip install django-payments-redsys

Parameters

  • merchant_code (required): Merchant Code - Redsys parameter.
  • terminal (required): Terminal - Redsys parameter.
  • shared_secret (required): Terminal Key - Redsys parameter.
    • "obtained by accessing the Administration Module, Merchant Data Query option in the 'See Key' section"
  • currency (default:'978'): ISO-4217 currency code.
  • endpoint (default:'https://sis-t.redsys.es:25443/sis/realizarPago': desired endpoint.
  • order_number_prefix (default:'0000'): Payment PK is suffixed to this to create Redsys order number
  • signature_version (default:'HMAC_SHA256_V1'): Only supported signature type.

settings.py

PAYMENT_VARIANTS = {
    'redsys': ('payments_redsys.RedsysProvider', {
        'merchant_code': '123456789',
        'terminal': '1',
        'shared_secret': 'qwertyasdf0123456789',
    })
}

CHECKOUT_PAYMENT_CHOICES = [('redsys', 'Redsys')]

if any('redsys' in provider for provider in CHECKOUT_PAYMENT_CHOICES):
    INSTALLED_APPS.append('payments_redsys')

Copyright (C) 2018 AJ Ostergaard

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-payments-redsys-0.3.post1.tar.gz (17.8 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page