Re: PayPal Integration

2021-06-01 Thread Eric 247ERICPOINTCOM
Hi Sharif, This is the code from the page I am trying to implement. It is a form which creates a post and the user will first pay by paypal, then after payment I would like the post of the user to be submitted automatically. {% load crispy_forms_tags %} {% block searchform %} Search

Re: PayPal Integration

2021-05-31 Thread Sharif Mehedi
Glad to be of help. It'd be easier for me to help you if I had a sneak peek at your code snippet, with which you are trying to do that. Sharif On Monday, May 31, 2021, 5:56:44 PM GMT+6, Eric 247ERICPOINTCOM wrote: Thank you Sharif, I have integrated successfully with paypal after going

Re: PayPal Integration

2021-05-31 Thread Eric 247ERICPOINTCOM
Thank you Sharif, I have integrated successfully with paypal after going through the paypal developer docs, and tested it with sandbox.paypal and it is working great. However I would like your help, to now be able to submit the form automatically after making the payment with paypal. I have

Re: PayPal Integration

2021-05-19 Thread Eric 247ERICPOINTCOM
Thank you Sharif. Let me do that, I will come back to the conversation after *Kind Regards* *Eric Bawakuno | Computer Engineer | +27795639700| +27 815152254 | eric...@gmail.com | **Address**: 29 Rochester Road, Observatory | Cape Town, South Africa | 7925* f On Wed, May 19, 2021 at 4:23 PM

Re: PayPal Integration

2021-05-19 Thread Sharif Mehedi
First you need to have OAuth 2 on your server. look for PYPI packages that has OAuth for paypal.the follow this: https://developer.paypal.com/docs/api/overview/On Wednesday, May 19, 2021, 5:30:43 PM GMT+6, Eric 247ERICPOINTCOM wrote: Hi I would like to integrate PayPal with my

PayPal Integration

2021-05-19 Thread Eric 247ERICPOINTCOM
Hi I would like to integrate PayPal with my project in Django I have gone through a couple of tutorials but I still dont understand how to do it. I am new to Django but I have got a project am working on which charges per post on the website. When a post is created it will be charged I want

Re: PayPal integration

2008-04-04 Thread [EMAIL PROTECTED]
Take a look at django-cart, too. On Apr 4, 2:49 pm, Norbert <[EMAIL PROTECTED]> wrote: > There is a recipe in > ASPNhttp://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/456361 > > Not tested by me and not django related but maybe it helps > > On 27 Mrz., 05:54, e <[EMAIL PROTECTED]> wrote:

Re: PayPal integration

2008-04-04 Thread Norbert
There is a recipe in ASPN http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/456361 Not tested by me and not django related but maybe it helps On 27 Mrz., 05:54, e <[EMAIL PROTECTED]> wrote: > Is there a tutorial or stand-alone django app somewhere that shows how > to make a PayPal

Re: PayPal integration

2008-03-27 Thread mt
Have a look at http://code.google.com/p/pypaypal/ Be careful with the Name Value Pair API, at the moment you must be a US or UK paypal customer to use it! On Mar 27, 3:54 am, e <[EMAIL PROTECTED]> wrote: > Is there a tutorial or stand-alone django app somewhere that shows how > to make a PayPal

PayPal integration

2008-03-26 Thread e
Is there a tutorial or stand-alone django app somewhere that shows how to make a PayPal payment using their API? Especially the Name Value Pair stuff. There's nothing on PayPal's site and so far I've only found this: http://python.pastebin.com/f782d48d9 I've tried looking through the