我正在尝试导出文件jl输出的url。但是从解析json输出开始,我得到了Bad请求的错误。我无法理解为什么,因为当我在网上手动输入网址时,它会有一个有效的结果。
using System;
using System.IO;
using System.Web;
using System.Net;
namespace web
{
class Program
{
static void Main(string[] args)
{
var json = new WebClient().DownloadString("http://steamcommunity.com/market/pricehistory/?country=DE¤cy=3&appid=570&market_hash_name=Helm%20of%20the%20Guardian%20Construct");
Console.WriteLine(json);
Console.ReadLine();
}
}
}