我有一个使用.net 4的windows应用程序。
我正在从"WarGaming.Net"API获取数据。
我通过HttpWebRequest和HttpWebResponse类获得的大部分数据。
我的url请求是"http://cw.worldoftanks.eu/clanwars/maps/provinces/regions/1/?ct=json">
但我得到了"403禁言"。
我读过这篇关于如何使用java脚本的文章https://github.com/thunder-spb/wot-api-description/issues/28#issuecomment-33958289
function getResp($parr) {
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "http://cw.worldoftanks.eu".$parr);
curl_setopt($ch, CURLOPT_VERBOSE, 0);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)");
curl_setopt($ch, CURLOPT_HTTPHEADER,
array(
'Accept: application/json, text/javascript, text/html, */*',
'X-Requested-With: XMLHttpRequest'
)
);
curl_setopt($ch, CURLOPT_REFERER, "http://worldoftanks.eu/");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$response = curl_exec($ch);
$c_type = curl_getinfo($ch, CURLINFO_CONTENT_TYPE);
if (curl_getinfo($ch, CURLINFO_CONTENT_TYPE) == 'image/jpeg') {
$response = array();
$response['request_data']['error_message'] = w2u('Site returned JPEG, Maintanace maybe?');
$response = json_encode($response);
}
curl_close($ch);
return $response;
}
print_r( getResp('/clanwars/maps/provinces/regions/1/?ct=json') );
我想知道如何用.net元素实现对c代码的请求。
感谢
RC
这是一个PHP脚本块,它使用cURL库向具有一系列特定标头和值的服务器发出请求。
您将需要使用.NET equiv,WebRequest:http://msdn.microsoft.com/en-us/library/system.net.webrequest%28v=vs.110%29.aspx看看C#中的带有用户身份验证的cURL,了解更多实现示例。