From this article on CodeGuru about PayPal IPN, I see there are two fields, payer_email and payer_id, that can be used to identify the user. Is there anything else I’m missing? Do you use these fields to identify the user or how do you do it?
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I’ve used the ‘custom’ variable to hold the user id in my system. Then, when the ipn notification comes back to my site, I use the value in ‘custom’ to look up and identify the user when processing the ipn.
Doing this requires the user to be logged in on my site so I know who they are and can add that information into the ‘custom’ variable for the paypal button.