Verify Paypal transaction for _any_ account? [message #173792] |
Thu, 05 May 2011 07:25 |
me
Messages: 192 Registered: September 2010
Karma: 0
|
Senior Member |
|
|
Hi,
I'd like to make a "shop", where others can submit their games and _their_
paypal address. Now if you pay game "X" for paypal account "Y" - is there a
way to get the transaction status, so _my_ store can provide the download
link?
Like: An app store with direct purchase.
Thank you,
-Gernot
www.glbasic.com - BASIC for multiple platforms
|
|
|
Re: Verify Paypal transaction for _any_ account? [message #173795 is a reply to message #173792] |
Thu, 05 May 2011 10:43 |
Jerry Stuckle
Messages: 2598 Registered: September 2010
Karma: 0
|
Senior Member |
|
|
On 5/5/2011 3:25 AM, Gernot Frisch wrote:
> Hi,
>
> I'd like to make a "shop", where others can submit their games and _their_
> paypal address. Now if you pay game "X" for paypal account "Y" - is there a
> way to get the transaction status, so _my_ store can provide the download
> link?
>
> Like: An app store with direct purchase.
>
> Thank you,
> -Gernot
>
> www.glbasic.com - BASIC for multiple platforms
>
>
What does this have to do with PHP?
Why don't you ask Paypal?
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex(at)attglobal(dot)net
==================
|
|
|
Re: Verify Paypal transaction for _any_ account? [message #173797 is a reply to message #173792] |
Thu, 05 May 2011 12:40 |
Peter H. Coffin
Messages: 245 Registered: September 2010
Karma: 0
|
Senior Member |
|
|
On Thu, 5 May 2011 09:25:12 +0200, Gernot Frisch wrote:
> Hi,
>
> I'd like to make a "shop", where others can submit their games and _their_
> paypal address. Now if you pay game "X" for paypal account "Y" - is there a
> way to get the transaction status, so _my_ store can provide the download
> link?
>
> Like: An app store with direct purchase.
Yes. Please see the developer docs on Paypal, and the support forums on
Paypal. Paypal has all of that. Here doesn't.
--
Pieces of seven! Pieces of seven! (Hrm, parroty error)
|
|
|
Re: Verify Paypal transaction for _any_ account? [message #173798 is a reply to message #173797] |
Thu, 05 May 2011 13:59 |
me
Messages: 192 Registered: September 2010
Karma: 0
|
Senior Member |
|
|
On 5/5/2011 8:40 AM, Peter H. Coffin wrote:
> On Thu, 5 May 2011 09:25:12 +0200, Gernot Frisch wrote:
>> Hi,
>>
>> I'd like to make a "shop", where others can submit their games and _their_
>> paypal address. Now if you pay game "X" for paypal account "Y" - is there a
>> way to get the transaction status, so _my_ store can provide the download
>> link?
>>
>> Like: An app store with direct purchase.
>
> Yes. Please see the developer docs on Paypal, and the support forums on
> Paypal. Paypal has all of that. Here doesn't.
Specifically, see the documentation for the IPN Listener script. Such a
script listens for information from PayPal, then executes whatever code
you add to it. In the code you add you can, for example, direct them to
a page with the download link.
Look for $txn_type = 'subscr_payment' and $payment_status='completed' as
a place to add your code in the listener script. There are a wide number
of $payment_status values so look through it carefully for the
scenario(s) that fit(s) your circumstances.
Bill B
|
|
|