Bitcoin Forum

Bitcoin => Bitcoin Technical Support => Topic started by: danieldaniel on April 21, 2012, 10:01:01 AM



Title: bitcoinpayflow.com implementation help
Post by: danieldaniel on April 21, 2012, 10:01:01 AM
Hi,
For a bitcoinpayflow.com payment notification, does it just send a POST request to the payment notification URL?  Like $_POST['amount']; or something?

If not, could someone please enlighten me as to how it does send it?

Thanks!

EDIT:
Forgot to mention, I am using PHP.


Title: Re: bitcoinpayflow.com implementation help
Post by: danieldaniel on April 21, 2012, 10:03:17 AM
Forgot to mention, this is PHP.


Title: Re: bitcoinpayflow.com implementation help
Post by: mcorlett on April 21, 2012, 10:37:04 AM
Yes.
Code:
$_POST['amount']
$_POST['bitcoin_address']
$_POST['category']
$_POST['foreign_order_id']
$_POST['number_of_confirmations']
$_POST['order_status']
$_POST['transaction_fee']
$_POST['transaction_timestamp']
$_POST['signature']


Title: Re: bitcoinpayflow.com implementation help
Post by: danieldaniel on April 21, 2012, 08:57:26 PM
Yes.
Code:
$_POST['amount']
$_POST['bitcoin_address']
$_POST['category']
$_POST['foreign_order_id']
$_POST['number_of_confirmations']
$_POST['order_status']
$_POST['transaction_fee']
$_POST['transaction_timestamp']
$_POST['signature']
Thanks!