Подскажите пожалуйста как получить ответ от гет запроса в переменную средствами C#
return response; -не подходит
return response; -не подходит
Код:
string bitly_login = project.Variables["bitly_login"].Value;
string bitly_api_key = project.Variables["bitly_api_key"].Value;
string link_short = project.Variables["target_url"].Value;
string url = "http://api.bitly.com/v3/shorten?longUrl="+link_short+"&login="+bitly_login+"&apiKey="+bitly_api_key;
string proxy = "";
string encoding = "UTF-8";
int timeout = 30000;
string cookies = "";
string userAgent = "";
bool useRedirect = false;
int maxRedirectCount = 5;
string[] additionalHeaders = {
"Accept-Language: ru-RU,ru;q=0.8,en-US;q=0.5,en;q=0.3",
"Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8",
"Connection: keep-alive"};
var response = ZennoPoster.HttpGet(url, proxy, encoding, ZennoLab.InterfacesLibrary.Enums.Http.ResponceType.BodyOnly, timeout, cookies, userAgent, useRedirect, maxRedirectCount, additionalHeaders);
return response;