views:

122

answers:

1

I'm trying to implement PayPal Adaptive Payments API. Into the headers I should include these informations:

headers.put("X-PAYPAL-SECURITY-USERID", "tok261_biz_api.abc.com"); 
headers.put("X-PAYPAL-SECURITY-PASSWORD","1244612379"); 
headers.put("X-PAYPAL-SECURITY-SIGNATURE","lkfg9groingghb4uw5" 
headers.put("X-PAYPAL-DEVICE-IPADDRESS", "168.212.226.204"); 
headers.put("X-PAYPAL-REQUEST-DATA-FORMAT", "NV"); 
headers.put("X-PAYPAL-RESPONSE-DATA-FORMAT", "NV");  
headers.put("X-PAYPAL-APPLICATION-ID", "APP-80W284485P519543T");

I've created test accounts for both, buyer and seller. But I don't really know what are these first three items. I couldn't find that information. There are multiple sites developer.paypal.com, x.com so it's confusing. I don't know which USERID and SIGNATURE should I use.

A: 

I found it on developer.paypal.com -> Profile link(on top right)

pocoa