Hi,
I am having trouble getting a callback to the "notify_url" that I
specify in the form that I post to PayPal.
The "return" and "return_cancel" work fine. But I never geta post to
the "notify_url"
Any advice appreciated.
Here is the relevant bit of the form I post:
<form action="
https://www.sandbox.paypal.com/cgi-bin/webscr"
method="post"><div style="margin:0;padding:0"><input
name="authenticity_token" type="hidden"
value="f808720322c1b84113937aac4e7134ecaea92770" /></div>
<input name="commit" type="submit" value="Proceed to Payments Page" /
>
<input id="business" name="business" type="hidden"
value="
george_121...@gmail.com" />
<input id="bn" name="bn" type="hidden" value="ActiveMerchant" />
<input id="redirect_cmd" name="redirect_cmd" type="hidden"
value="_xclick" />
<input id="quantity" name="quantity" type="hidden" value="1" />
<input id="cmd" name="cmd" type="hidden" value="_ext-enter" />
<input id="address_override" name="address_override" type="hidden"
value="0" />
<input id="charset" name="charset" type="hidden" value="utf-8" />
<input id="no_note" name="no_note" type="hidden" value="1" />
<input id="no_shipping" name="no_shipping" type="hidden" value="1" />
<input id="item_name" name="item_name" type="hidden" value="Upgrade to
Standard account Payment" />
<input id="amount" name="amount" type="hidden" value="10.0" />
<input id="notify_url" name="notify_url" type="hidden" value="http://
myapp.heroku.com/account_upgrades/notify" />
<input id="return" name="return" type="hidden" value="http://
myapp.heroku.com/account_upgrades/paid/3" />
<input id="currency_code" name="currency_code" type="hidden"
value="USD" />
<input id="cancel_return" name="cancel_return" type="hidden"
value="
http://myapp.heroku.com/account_upgrades/cancelled/3" />
<input id="custom" name="custom" type="hidden" value="3" />
<input id="item_number" name="item_number" type="hidden" value="3" />
</form>
Thanks
George