我为向服务器发送请求的 android 开发了一个应用程序,我在 Android 中的代码如下:
DefaultHttpClient httpclient = new DefaultHttpClient();
HttpPost httppost = new HttpPost("www.something.com");
List<NameValuePair> values = new ArrayList<NameValuePair>();
values.add(new BasicNameValuePair("username", user));
values.add(new BasicNameValuePair("password", password));
values.add(new BasicNameValuePair("login-form-type", "pwd"));
httppost.setEntity(new UrlEncodedFormEntity(values, HTTP.UTF_8));
HttpResponse response = httpclient.execute(httppost);
HttpEntity entity = response.getEntity();
List<Cookie> cookies = httpclient.getCookieStore().getCookies();
我已经尝试了一些示例,但似乎即使在 Visual Studio 2012 中的标准 C# 代码在 Windows 应用商店应用程序中也无法正常工作任何人都可以帮助我了解此代码在 Windows 8 应用商店应用程序中的工作方式。
我真的很感激你的帮助。
此致。