I need to extract data from a website's REST api, but I've never worked with it, and I'm just getting back into coding again after some time. But I need to get this project moving in a forward direction very quickly, and cannot for the life of me, figure out how to convert this C#/JSON string into a php equivalent script to poll for the data I need...
HttpWebRequest httpWebRequest = (HttpWebRequest)WebRequest.Create(address);
httpWebRequest.Headers.Add("Authorization", "Basic " + Convert.ToBase64String(System.Text.ASCIIEncoding.ASCII.GetBytes(string.Format("{0}:{1}",UserName, Password))));
I'm thinking I need to use curl for this, but again, it's been a long time, and I'm a little rusty. Any help is greatly appreciated.