Beispiel #1
0
        public void ProcessRequest(HttpContext context)
        {
            // string Songname= System.Web.HttpContext.Current.Request.QueryString["SongName"];
            string id   = context.Request["id"].ToString();
            string json = pg.HttpGet("http://music.163.com/api/album/" + id + "/", "");

            json = json.Replace("http://m", "http://p");
            context.Response.ContentType = "text/plain";
            context.Response.Write(json);
        }