Skip to main content

Django nestpay odeme sistemine inteqraciya

Project description

nestpay odeme sistemi ucun modul

from nestpay import NestPay
from django.http import HttpResponse
from django.views.decorators.csrf import csrf_exempt




def payment(request):
    ......
    temp = NestPay(
        clientId = '', # bank terefinden verilir
        amount = '', # mebleg : 1.00 azn
        oid = '', # order id unikdi
        okUrl = '', # callback url success den sonra bura post gonderilir
        failUrl = '', # error url 
        rnd = microtime(),
        storekey = '2', # bank terefinden verilir
        storetype = '', # bank terefinden verilir
        lang = 'en', # hansi dilde odeme sehvesine redirec edecek
        islemtipi = 'Auth', # default 
        hash = '', # hash edirik
        refreshtime = '5', # sehveler arasinda redirect timeout u
        instalment='', # taksid
        currency = '944', # Azerbaycan manatinin kodu
        post_url = 'https://entegrasyon.asseco-see.com.tr/fim/est3Dgate' # odeme sehivesi
        )
    data = temp.bank_data()
    return HttpResponse(data)

# callback yuxarda paymentde qeyd edeceyimiz okUrl di ve o url e bank post gonderir
@csrf_exempt
def callback(request):
    ........
    if request.method == 'POST':
        result = Nestpay.data_result(request.POST)
        return HttpResponse(result)
    else:
        return HttpResponse("Not found")

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

nestpay-0.0.1.tar.gz (3.6 kB view hashes)

Uploaded Source

Built Distribution

nestpay-0.0.1-py3-none-any.whl (3.5 kB view hashes)

Uploaded Python 3

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