Verify user through PayPal GetVerifiedStatus API

I am trying to get this GetVerifiedStatus API to work, but it just doesn't work.

I tried using a valid email address at http://www.dev-tool.com/pptester/NVP/CallType.aspx?ServiceID=51&CallTypeID=53 Both directly and through curl, but they all give an error "Api credentials wrong. " Does anyone know how to do this?

Then I have one more question, Paypal says that the GetVerifiedStatus API gets the email, first and last name. (as mentioned above)

However, there is this guy who says that he verified using email, password and signature successfully ... does anyone know where they make the password and the signature comes from him?

thank

+5
source share
2 answers

The link you are referring to is the username, password and API signature.

To use GetVerifiedStatus, you must send email, firstName, lastName and matchCriteria. See Also page 63 of https://www.paypal-biz.com/development/documentation/PP_AdaptiveAccounts.pdf

+1
source

To use GetVerifiedStatus.php, here is what you need to do:

  • paypal sandboc
  • API , .
  • , 3

    //PayPal API Credentials
    $API_UserName = "sbapi_1287090601_biz_api1.paypal.com"; //TODO
    $API_Password = "1287090610"; //TODO
    $API_Signature = "ANFgtzcGWolmjcm5vfrf07xVQ6B9AsoDvVryVxEQqezY85hChCfdBMvY"; //TODO
    
    //PAYPAL SANDBOX LOGIN EMAIL
    $API_SANDBOX_EMAIL_ADDRESS = "rishaque@paypal.com"; <<<<< THIS IS YOUR LOGIN EMAIL ADDRESS
    

, .

0

All Articles