次のhttpリクエストコードを使用してGoogle Places APIでピア証明書エラーを取得しています:->(Google Places API httpリクエストを使用する場合、SSLSocketFactoryなどを追加する必要はないと思います)誰でもこれを修正する方法を教えてもらえますか?
public JSONObject showPorts()
throws ClientProtocolException, IOException, JSONException{
// StringBuilder portURL = new StringBuilder(pURL);
// HttpGet get = new HttpGet(url);
StringBuilder portURL = new StringBuilder(pURL);
HttpGet get = new HttpGet(portURL.toString());
Log.d(TAG,pURL);
HttpResponse r = client.execute(get);
int status = r.getStatusLine().getStatusCode();
if(status == 200){
Log.d(TAG,"200");
HttpEntity e = r.getEntity();
String data = EntityUtils.toString(e);