CreateRecurringPaymentsProfile giving error 11502: invalid token

I keep getting the Invalid Token error when I call the NVP API CreateRecurringPaymentsProfile.

Below you will find the sequence of my API calls:

SetExpresscheckout

METHOD = SetExpressCheckout
VERSION = 98
PWD = <pwd>
USER = <user>
SIGNATURE = <signature>
ReturnUrl = http://google.com
CANCELURL = http://google.com
PAYMENTREQUEST_0_PAYMENTACTION = Authorization
PAYMENTREQUEST_0_AMT = 100.00
PAYMENTREQUEST_0_CURRENCYCODE = USD
L_PAYMENTREQUEST_0_NAME0 = Item1
L_PAYMENTREQUEST_0_QTY0 = 1
L_PAYMENTREQUEST_0_AMT0 = 100.00
PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID = rahul.katikineni@sap.com
LOCALECODE = US
L_BILLINGTYPE0 = RecurringPayments
L_BILLINGAGREEMENTDESCRIPTION0 = SameEveryTime

I am returning a token with ACK = * Success * as an answer. Then go to the paypal website using the URL [ https://www.sandbox.paypal.com/webscr&cmd=_express-checkout&token= ] and log in with your PayPal account and click "Agree and continue."

After reconciling and successfully redirecting to the redirect URL, I call the GetExpressCheckoutDetails API call with the following parameters

METHOD = GetExpressCheckoutDetails
VERSION = 98
PWD = <pwd>
USER = <user>
SIGNATURE = <signature>
TOKEN = <token from the SetExpressCheckout response>

DoExpressCheckoutPayment

METHOD = DoExpressCheckoutPayment
VERSION = 98
PWD = <pwd>
USER = <user>
SIGNATURE = <signature>
TOKEN = <token from the SetExpressCheckout response>
PAYERID = <payer ID from the GetExpressCheckoutDetails response>
PAYMENTREQUEST_0_AMT = 100
PAYMENTREQUEST_0_PAYMENTACTION = Sale
PAYMENTREQUEST_0_CURRENCYCODE = USD
L_PAYMENTREQUEST_0_NAME0 = Item1
L_PAYMENTREQUEST_0_QTY0 = 1
L_PAYMENTREQUEST_0_AMT0 = 100.00
PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID = rahul.katikineni@sap.com

CreateRecurringPaymentsProfile

METHOD = CreateRecurringPaymentsProfile
VERSION = 98
PWD = <pwd>
USER = <user>
SIGNATURE = <signature>
TOKEN = <token from the SetExpressCheckout response>
PAYERID = <payer ID from the GetExpressCheckoutDetails response>
DESC = SameEveryTime
BILLINGPERIOD = Month
BILLINGFREQUENCY = 1
PROFILESTARTDATE = 2013-05-16T00:00:00Z
MAXFAILEDPAYMENTS = 1
AMT = 100.00
CURRENCYCODE = USD
L_PAYMENTREQUEST_0_NAME0 = Item1
L_PAYMENTREQUEST_0_QTY0 = 1
L_PAYMENTREQUEST_0_AMT0 = 100.00
AUTOBILLAMT = AddToNextBilling

TIMESTAMP = 2013-04-17T05:31:24Z
CORRELATIONID = d2c1d30c1d31
ACK = Failure
VERSION = 98
BUILD = 5650305
L_ERRORCODE0 = 11502
L_SHORTMESSAGE0 = Invalid Token
L_LONGMESSAGE0 = The token is invalid
L_SEVERITYCODE0 = Error

, , - .

- ?

,

+5
2

, Paypal, . BillingDescription SetExpressCheckout ScheduleDEtails.Description CreateRecurringprofile. , .

:

public CreateRecurringPaymentsProfileResponseType createRecurringProfile(string tokenin){
        var scheduleDetails = new ScheduleDetailsType();
        scheduleDetails.PaymentPeriod = paymentPeriod;
        scheduleDetails.Description = "RecurringBilling"; 
}
public  SetExpressCheckoutResponseType setExpressCheckout()
{
 ....
 var billingAgreement = new BillingAgreementDetailsType();

            billingAgreement.BillingAgreementDescription = "RecurringBilling";
            billingAgreement.BillingType = BillingCodeType.RECURRINGPAYMENTS;
            billingAgreement.PaymentType = MerchantPullPaymentCodeType.ANY;

            ecDetails.BillingAgreementDetails.Add(billingAgreement);
 ...
 }
+1

All Articles