我正在尝试在我们的网络服务器上调用API,以便我们在Wordpress网站中创建用户帐户。
如果我将URL输入浏览器,它可以正常工作。如果我尝试通过代码调用它,则会出现以下错误: -
The remote server returned an error: (404) Not Found.
这是我正在使用的代码
string URL = "http://api.mywebsite.com/pol-wp/api/user/register/?username=john&email=test@test.comm&nonce=7706960c14&display_name=John¬ify=both&user_pass=xxx&insecure=cool";
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(URL);
request.Method = "GET";
request.ContentLength = 0;
HttpWebResponse response = (HttpWebResponse)request.GetResponse();
更新:在Chrome中粘贴网址工作正常,但将其粘贴到IE会产生“未找到”错误消息