Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

So I am trying to get transaction detail from paypal without creating a form and just by sending a post to the url with the necessary information. This is a snippet of my code and I have tried doing the same through form and it works.

<form method=post action="https://www.sandbox.paypal.com/cgi-bin/webscr">
      <input type="hidden" name="cmd" value="_notify-synch">
      <input type="hidden" name="tx" value="<%= subscription.tx %>">
      <input type="hidden" name="at" value="<%= @identity_token %>">
      <input type="submit" value="View Details">
    </form>

The Ruby counterpart throws a EOFError and I don't know why it's doing it

paypal_uri = URI.parse('https://www.sandbox.paypal.com/cgi-bin/webscr')
@post_request = Net::HTTP.post_form(paypal_uri , {:tx => @subscription.tx, :at => IDENTITY_TOKEN, :cmd => "_notify-sync"})
share|improve this question

1 Answer

up vote 5 down vote accepted

The URL is https, so you need to enable SSL on your Net::HTTP.

require 'openssl'

paypal_uri = URI.parse('https://www.sandbox.paypal.com/cgi-bin/webscr')
req = Net::HTTP::Post.new(paypal_uri.path)
req.set_form_data({:tx => @subscription.tx, :at => IDENTITY_TOKEN, :cmd => "_notify-sync"})
sock = Net::HTTP.new(paypal_uri.host, 443)
sock.use_ssl = true
store = OpenSSL::X509::Store.new
store.add_cert OpenSSL::X509::Certificate.new(File.new('paypal.pem'))
store.add_cert OpenSSL::X509::Certificate.new(File.new('paypal2.pem'))
sock.cert_store = store
sock.start do |http|
  response = http.request(req)
end

To get the CA certificates paypal.pem and paypal2.pem, simply browse to the PayPal URL manually, I'll describe it for FireFox. Click on the green icon on the left of your address bar, open the dialog, view certificate, Details, then export the two VeriSign certificates as paypal.pem and paypal2.pem. Put them into the same folder than your script. That should cure your problems!

share|improve this answer
emboss: Sorry for the late reply but I actually see 3 of them?? – denniss Jul 16 '11 at 17:29
@denniss: That's OK. You see the certificate used by PayPal, that's the last one in the chain. But it's the other two, above PayPal's certificate that you are interested in. It's those two VeriSign certificates that you need to download. – emboss Jul 16 '11 at 19:39

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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