Опыт с WebRequest

 

Кто имеет опыт с WebRequest() / помогите ....

string headers;
char post[], result[];
int res = WebRequest("GET", "http://www.google.com/finance/info?q=NASDAQ%3aGOOG", "", NULL, 10000, post, ArraySize(post), result, headers);
Print("Status code: " , res, ", error: ", GetLastError());
Print("Server response: ", CharArrayToString(result));

Дает ошибку 4060

и

string headers;
char post[], result[];
StringToCharArray("currency=JPY", post, 0, 12); // Must specify string length; otherwise array has terminating null character in it
int res = WebRequest("POST", "http://site.com/v1/accounts", "", NULL, 10000, post, ArraySize(post), result, headers);
Print("Status code: " , res, ", error: ", GetLastError());
Print("Server response: ", CharArrayToString(result));

Что здесь не так ?

 
в свойства терминала добавлены пути
http://www.google.com/finance/info 
http://site.com/v1/accounts
?
 
Причина обращения: