Hi there,
I found these apis from blockchain.info helpful:
http://blockchain.info/en/api/blockchain_wallet_apiBut instead of having a plain text url using HTTP GET like this:
https://blockchain.info/merchant/$guid/payment?password=$main_password&second_password=$second_password&to=$address&amount=$amount&from=$from&shared=$shared&fee=$fee¬e=$note
I prefer to have a HTTP POST method like:
https://blockchain.info/merchant/$guid/payment (all parameters are in POST payload)
There are several reasons for this:
1 more secure (although it's in https, but some browsers may send the urls back to build their search engine, you'll never know)
2 no need to consider the length of my url when dealing with "send many" (really, this bothers me a lot)
So, my question is, is this HTTP POST feature available? Thanks. I really need this feature, and it's should be very easy to add if it's not supported.