Reputation: 31
I am working on integrating a php payment form with Paypal Payflow using Transparent Redirect. I am getting the secure token OK but when I post the credit card information to https://pilot-payflowlink.paypal.com my browser displays this:
Error: There was a problem processing your request. If you continue to have an issue, please contact us. Error Code: PL001.
Here are the details of the token request:
To request the secure token, I posted the following to: https://pilot-payflowpro.paypal.com.
USER=**********
&VENDOR=***********
&PARTNER=PayPalUK
&PWD=************
&TRXTYPE=S
&TENDER=C
&CURRENCY=GBP
&CREATESECURETOKEN=Y
&SECURETOKENID=7og61wr3n8wbg2j866vqfken0r3izucof5k2
&SILENTTRAN=TRUE
&BILLTOFIRSTNAME=Dave
&BILLTOLASTNAME=Testing
&BILLTOSTREET=123 Some St
&BILLTOZIP=47374
&[email protected]
&AMT=1.00
I get a valid response back with RESULT=0 and SECURETOKEN=9fIJH6BNI80qLIV7cWdv5VQ9p
Then I post the credit card info to https://pilot-payflowlink.paypal.com with this form:
<form id="payment_form" name="payment_form" method="post" action="https://pilot-payflowlink.paypal.com">
<input type="hidden" name="SECURETOKEN" value="9fIJH6BNI80qLIV7cWdv5VQ9p">
<input type="hidden" name="SECURETOKENID" value="7og61wr3n8wbg2j866vqfken0r3izucof5k2">
<input type="hidden" id="ACCT" name="ACCT" value="4242424242424242">
<input type="hidden" id="EXPDATE" name="EXPDATE" value="022021">
<input type="hidden" id="CSC" name="CSC" value="123">
</form>
https://pilot-payflowlink.paypal.com simply displays a page with the following:
Error: There was a problem processing your request. If you continue to have an issue, please contact us. Error Code: PL001.
Upvotes: 3
Views: 1627