I'm new to ViciDial and I was tasked to update our old ViciDial system to a newer version.
After stepping thru my code, it returns an error on this page (agc/authenticate.php) after the POST method.
and it looks like no longer exist in the directory.
Any idea on how to handle this? or is there an equivalent page for this?
See below existing code:
- Code: Select all
string url = string.Format("http://{0}/agc/authenticate.php", this.Server);
string resultPage =;
using(WebClient wc = new WebClient())
{
wc.Headers["Content-Type"] = "application/x-www-form-urlencoded";
resultPage = wc.UploadString(url, "POST", "");
}
return new ApiResponse(ApiResponseTypes.Authentication,resultPage);
Thanks for your help.