我想从网站获取订阅者电子邮件列表,那么如何从代码后面获取 ajax 调用?
WebClient client = new WebClient();
WebRequest req = WebRequest.Create("https://api.aweber.com/1.0/accounts/1/lists/xxxxxx/");
req.ContentType = "application/json";
WebResponse response = req.GetResponse();
上面的“xxxxx”表示一个列表名。但它给了我一个错误的请求错误,所以我如何从asp.net c#中的代码发出请求?