search for: paypal_ipn

Displaying 9 results from an estimated 9 matches for "paypal_ipn".

2006 Jul 25
7
Paypal - Instant Payment Notifications
...ding and receiving accounts, i''ve got the Paypal button on my view, I can go and make payments ok, but I can''t get the Instant Payment Notification part to work. At the end of the payment process the user is left in a paypal screen with seemingly no way back to my app and the paypal_ipn action Cheers, John -- Posted via http://www.ruby-forum.com/.
2007 Aug 24
1
ActiveMerchant Paypal IPN and RESTful design
Hello, I''m trying to go all REST of my application. But i''ve come to one problem. How do i do payment, using IPN, in a RESTful way? right now i have an Payments controller. With 2 actions. action "new" shows a page with a paypal button. action "paypal_ipn" is where paypal sends its notifications. How would i go about doing this in a REST environment? Thank you --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this g...
2006 Jan 09
5
Paypal IPN - unable to access breakpoint during POST?
...yment notification action. Why can I not access the breakpoint placed inside the action that paypal POSTs to? It just doesn''t find the server, but it works fine when placed inside other actions. I''ve appended the code to the end of this post. Thanks everyone! Tom -- def paypal_ipn notify = Paypal::Notification.new(request.raw_post) breakpoint split = notify.item_id.split(''-'') @order = Order.new @item = Item.find(split[0]) @user = User.find(split[1]) @order.user_id = @user.id @order.item_id = @item.id if notify.acknowledge begin if n...
2006 Feb 07
21
Paypal and Rails
Hello everyone, I am looking for a way to pass off a simple payment to paypal using our own interface. I understand that this requires making full use of Paypal''s API since we won''t be using their shopping cart or anything. I found the article by Pranav Bihari on his site and in the Wiki on using SOAP4R and the paypal WSDL file to interface with paypal web services, but I
2006 Apr 21
10
Paypal payments and IPN
I have followed the instructions over at http://dist.leetsoft.com/api/paypal/ In order I: 1. installed the money library with gem install --source http://dist.leetsoft.com/api/paypal/ money 2. installed the paypal library with gem install --source http://dist.leetsoft.com/api/paypal/ paypal 3. created a new app with rails NewApp 4. added the PaymentHelper module to the
2006 Jun 29
0
Problem getting encrypted submit buttons working with the paypal gem and rails 1.1.2
...e_id, Money.us_dollar(@pp_amount_owed), @paypal_to, :business_key => @our_privatekey, :business_cert => @our_pubcert, :business_certid => @our_certid, :return => @pp_return, :item_name => @pp_item_name, :notify_url => url_for (:only_path => false, :action => ''paypal_ipn'') %> I set the certificate ID to the ID showing in my sandbox user''s Encrypted payment settings after uploading the key. Any suggestions about what I''m doing wrong? Also, is there any way to get the paypal sandbox to give more useful debugging information? jpb -...
2006 Jan 31
2
NameError/Unitialized Constant With PayPal Gem
I am trying to use the PayPal gem and having a little trouble. I installed the gem w/o any trouble: paypal (1.0.1) Paypal IPN integration library for rails and other web applications When I try to use it in my controller, as follows: def paypal_ipn notify = Paypal::Notification.new(request.raw_post) ... end I get a NameError: uninitialized constant Paypal This error occured while loading the following files: paypal.rb Like it can''t find the gem files... I looked and the gem is in place and the files are all intact. Am...
2009 Mar 19
0
How to change paypal url from sandbox to papal original url. i am using paypal lib -- paypal (2.0.0)
...g Paypal::Notification.ipn_url do %> <%= paypal_setup "Credit purchase", (amounts.collect {|a| a.amount}.join(".") unless amounts.empty?), "bussiness-q89RzV0OsXQ@public.gmane.org", :notify_url =>url_for(:only_path => false, :action => ''paypal_ipn'' ),:return =>url_for(:only_path => false, :action => ''paypal_success''),:cancel_return => url_for(:only_path => false, :action => ''paypal_failure''),:currency_code => ''JPY'',:custom => request.remote_ip, :on0 =>...
2006 Mar 25
4
Rails PayPal and Currencies other than USD
Has anyone been able to make direct API calls to PayPal in currencies other than USD? I get an error message "The currency code submitted is not supported. Check the currency code and try again." I''m using the PayPal plugin for Rails. I can successfully transact in USD, but not AUD (Australian Dollars). Cheers, Dan