Post
Topic
Board Project Development
Re: [Announce] bitcoinmonitor.net - Free professional notification/payment service
by
Herbert
on 28/03/2014, 06:50:09 UTC
Hey,
I am using your website and it is absolutely AWESOME! I have a question though, I am making a php script that is using your website for notifications on payment, and how would i $_GET this information. I used to use blockchain http calling and it put the results in the URL, and I could easily use $_GET to get the data, but your POST posts in json, and getting doesn't work for me normally. How would I get things from your json post

It is a bit quirky with php to get the raw post data. It should work like this:
Code:
json_decode(file_get_contents('php://input'))