views:

270

answers:

2

I want to implement paypal in my application and it is purely objective C based.

How should I do that? I searched a lot but could not get any proper guidance?

A: 

I have done it by creating a button in Paypal. Once the button is created, Paypal gives a HTML link for that button for use in emails. Once that has been done, the link can be opened using a combination of NSURL and [[NSWorkspace sharedWorkspace] openURL: ].

Ian Turner
creating a button in Paypal.....how to do that?
ashish
Login to Paypal. Click on Merchant Services at the centre of the row of tabs near the top.In the useful links section under Website Payments Standard there is a link titled Buy Now Buttons. Click on that and you should be fine.
Ian Turner
but how will you come to know that user has done with transaction by creating a button in paypal
ashish
+2  A: 

Paypal has a pretty extensive SOAP API available for external use. Cocoa doesn't have the greatest support for SOAP, but you could probably get something to work via those APIs.

Dave DeLong
Any reference or docs so that I can go thr those APIs
ashish
Dave DeLong
thanks dave I went thr that and trying to create a webservice call to paypal sandbox...still struggling in doing that
ashish