0

私のAndroidアプリケーションでmoodle(私たちの大学のmoodleサイトなど)から認証を取得したいです。また、データベースへのアクセス権がありません。ユーザー名とパスワードを使用して、アプリケーションから http 投稿要求を作成しようとしました。

しかし、投稿リクエストを実行すると、例外が発生します。これは私が試したものです

private URI url = new URI("https://online.mrt.ac.lk/login/index.php"); 
HttpClient httpclient = new DefaultHttpClient();
HttpPost httppost = new HttpPost(url);
List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(); 
nameValuePairs.add(new BasicNameValuePair("username", "user")); 
nameValuePairs.add(new BasicNameValuePair("password", "password"));
httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
HttpResponse response = httpclient.execute(httppost);
HttpEntity entity = response.getEntity();
InputStream is = entity.getContent();

このような例外が発生します

javax.net.ssl.SSLPeerUnverifiedException: No peer certificate

誰か助けてください。

4

0 に答える 0