PayPal Payment Provider Integration for django-shop
Project description
REST based PayPal Payment Provider Integration for django-shop
This integrates PayPal for django-shop version 1.0 and above.
Installation
for django-shop version 1.0.x:
pip install djangoshop-paypal<1.1
Configuration
In settings.py
of the merchant's project:
Add 'shop_paypal'
to INSTALLED_APPS
.
At PayPal create a business account and apply for the vendor credentials. For a testing account add them as:
SHOP_PAYPAL = {
'API_ENDPOINT': 'https://api.sandbox.paypal.com',
'MODE': 'sandbox',
'CLIENT_ID': '<client-id-as-provided-by-PayPal>',
'CLIENT_SECRET': '<client-secret-as-provided-by-PayPal>',
'PURCHASE_DESCRIPTION': "Thanks for purchasing at My Shop",
}
and for production:
SHOP_PAYPAL = {
'API_ENDPOINT': 'https://api.paypal.com',
'MODE': 'live',
'CLIENT_ID': '<client-id-as-provided-by-PayPal>',
'CLIENT_SECRET': '<client-secret-as-provided-by-PayPal>',
'PURCHASE_DESCRIPTION': "Thanks for purchasing at My Shop",
}
Add 'shop_paypal.modifiers.PaymentModifier'
to the list of SHOP_CART_MODIFIERS
.
Add 'shop_paypal.payment.OrderWorkflowMixin'
to the list of SHOP_ORDER_WORKFLOWS
.
When rendering the payment method form, "PayPal" shall appear in the list of possible payments.
Successful payments are redirected onto the just created order detail page.
If a payment was rejected by PayPal, djangoshop-paypal redirects onto the CMS page with the ID
shop-cancel-payment
, so make sure that such a page exists.
Changes
1.0.1
- Fix #6: PayPal's create payment now is invoked by the server.
1.0
- Adopted to django-SHOP version 1.0
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
File details
Details for the file djangoshop-paypal-1.0.1.tar.gz
.
File metadata
- Download URL: djangoshop-paypal-1.0.1.tar.gz
- Upload date:
- Size: 6.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.33.0 CPython/3.6.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 27e9e82da922c639c0351184a432c4bbc1198623b54ee5305be00b10b77d54ed |
|
MD5 | 48dba102a39f0ce9569d8fd4ed4d127d |
|
BLAKE2b-256 | ecfd3d9d9b6b2155a3013b88389387815923fa932e7e41a07bd00b02511635bc |