Receive EcoCash USD


#1

Is there an option to receive USD payments via Mobile Transactions


#2

guyz how do l link paynow to my DJANGO app


#3

Did you find a solution to this? If not you could take a look at this example that I did some time back using Django.

I basically created .py file to handle this which was separate from my view - https://github.com/KM-Spatial/Land-Surveyor-Manager/blob/master/users/paynow_processing.py

And this was the Payment View - https://github.com/KM-Spatial/Land-Surveyor-Manager/blob/master/users/views.py#L96

Also make sure to add Paynow into your settings.py file like so

# Configure PayNow Payments
paynow = Paynow(
    env('PAYNOW_ID'),
    env('PAYNOW_KEY'),
    'https://medi-diagnosis.herokuapp.com/account/billing',
    'https://medi-diagnosis.herokuapp.com/account/billing'
)

That’s it. Maybe someone will build a Django App for integration after this like they did for WooCommerce, Shopify and others.