0
我開發了一個應用程序的Android誰發送到服務器的請求,我在Android的代碼如下:HttpPost在Windows 8商店XAML/C#
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商店應用中的工作方式。
我真的很讚賞你的幫助。
最好的問候。