Our client had given me a REST API to which I need to make a PHP call to. But as a matter of fact the documentation given with the API is very limited, so I don't really know how to …
So I have a link that returns a jSON object, and I need to have it decoded and put into variables in PHP.
URL
api.php?action=getThreads&hash=123fajwersa&node_id=4&order_by=post_date&…
I am having problems calling a url from PHP code. I need to call a service using a query string from my PHP code. If I type the url into a browser, it works ok, but if I use file-get-contents() …