json的错误请求400

时间:2016-10-13 09:57:55

标签: json

我正在尝试导出文件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&currency=3&appid=570&market_hash_name=Helm%20of%20the%20Guardian%20Construct");
            Console.WriteLine(json);
            Console.ReadLine();
        }
    }
}

0 个答案:

没有答案