in reply to Re: Business::PayPal::IPN synopsis doesn't make sense to me
in thread Business::PayPal::IPN synopsis doesn't make sense to me
I think that I do know what it is. I've been reading the manuals for a while, and have implemented it before. Hence I don't see how the example given in the synopsis can possibly work, unless it somehow incorporates a web server to receive the incoming IPN POST req from PP (in which case where is the config for that?)
I would have expected something like:
my $hash = $cgi->params(); # the incoming POST params
my $ipn = Business::PayPal::IPN->new( $hash );
if ( $ipn->isOK ) {
# further checks here ...
} else {
# invalid, log it
}
Basically, it needs to know something about your config and the post to work, where is that info?
Or maybe PayPal really does work like magic ...
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Business::PayPal::IPN synopsis doesn't make sense to me
by Anonymous Monk on Jul 24, 2008 at 09:39 UTC | |
by danmcb (Monk) on Jul 24, 2008 at 10:06 UTC | |
by Anonymous Monk on Jul 24, 2008 at 11:08 UTC | |
|
Re^3: Business::PayPal::IPN synopsis doesn't make sense to me
by Anonymous Monk on Oct 19, 2009 at 17:41 UTC |