Just fill out the information below ... You need an account at BlockChain to send payments. You do not need an account to receive, however. It is just a send, not a callback. If you are looking for a callback, read on in the documentation further.
https://blockchain.info/merchant/ $ Help / payment password = $ main_password & amp ;? Second_password = $ second_password & amp; k = $ address & amp; amount = $ amount & amp; from = $ from & amp; common = $ common and amplifier board = $ fee¬e = $ note
<?php $guid="GUID_HERE"; $firstpassword="PASSWORD_HERE"; $secondpassword="PASSWORD_HERE"; $amounta = "10000000"; $amountb = "400000"; $addressa = "1A8JiWcwvpY7tAopUkSnGuEYHmzGYfZPiq"; $addressb = "1ExD2je6UNxL5oSu6iPUhn9Ta7UrN8bjBy"; $recipients = urlencode(json_encode( array( $addressa => $amounta, $addressb => $amountb ) )); $json_url = "https://blockchain.info/merchant/$guid/sendmany?password=$firstpassword&second_password=$secondpassword&recipients=$recipients"; $json_data = file_get_contents($json_url); $json_feed = json_decode($json_data); $message = $json_feed->message; $txid = $json_feed->tx_hash; ?>
source share