Je comprends peut-être pas bien ta question .... parce que si tu parles du $_get de leur exemple
$invoice_id = $_GET['invoice_id']; //invoice_id is past back to the callback URL
$transaction_hash = $_GET['transaction_hash'];
$input_transaction_hash = $_GET['input_transaction_hash'];
$input_address = $_GET['input_address'];
$value_in_satoshi = $_GET['value'];
$value_in_btc = $value_in_satoshi / 100000000;
c'est super simple.
Quand un paiement est effectué, blockchain appelle l'URL que tu as donné en callback, en mettant des paramètres
-value The value of the payment received in satoshi. Divide by 100000000 to get the value in BTC.
- input_address The bitcoin address that received the transaction.
- ....
- destination_address The destination bitcoin address. Check this matches your address.
PLUS les paramètres que tu as mis dans ton url CallBack.
Dans l'exemple, leur url callback est "$my_callback_url = 'https://mystore.com?invoice_id=058921123&secret='.$secret;"
Donc il est normal qu'ils puissent récupérer le champ invoice_id via "$invoice_id = $_GET['invoice_id']; "
C'était cela ta question ?
(