I am new to PayPal and i want to know which is batter way to implement PayPal, SOAP or NVP API.

And what is the major difference between these two???

link|improve this question

feedback

3 Answers

I would recommend using the NVP (Name-value pair, basically POST with data) API over the SOAP API. NVP should be significantly lighter weight than SOAP. There are a few questions already on SO that complain about SOAP. I just was trying to figure out which to use and came upon those. Hope that helps.

Also, here's how PayPal describes the NVP API:

The PayPal Name-Value Pair API (NVP API) enables you to leverage the functionality of the PayPal API by simply sending an HTTP request to PayPal and specifying request parameters using name-value pairs. The NVP API is a lightweight alternative to the PayPal SOAP API and provides access to the same set of functionality as the SOAP API.

Emphasis my own.

link|improve this answer
feedback
up vote 0 down vote accepted

It's better to use the PayPal SOAP API (as i have completely implemented this). donut is correct in saying that NVP is lightweight. But there are 2 main advantages of using SOAP:

  1. The chance of error is much more the the NVP, as it's object oriented.
  2. And if you are doing programing for at least about one year then you will feel more conmfortable with SOAP.

I recommend SOAP over NVP, but it also depends upon usage.

link|improve this answer
11  
Eh. I've been programming for 10 years, and I've never been comfortable with SOAP. It's just too enterprisey. "Object oriented" does not always mean "better". – cHao Jun 18 '11 at 0:16
feedback

I simply think that SOAP is better for a lot of new programmers, who will be more confortable with it cause it s object oriented. But it is quite difficult to find and understand a logic in APIs when you did not create the objects by yourself in it ! NVP is structural so you can create your own objects in your scripts. This version is by more and more extensible !!!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.