0

次のメソッドを使用して、Apache HTTP クライアントを使用して Google Maps API を呼び出しています。

  protected synchronized String submitUrl(String url) throws AjApiException {
    //split off the parameters for the post
    String uri = extractUri(url);
    HttpPost httpPost = new HttpPost(uri);
    httpPost.setEntity(buildHttpEntityParmsFromUrl(url));
    String json = null;
    try {
      HttpResponse response = httpClient.execute(httpPost);
      HttpEntity entity = response.getEntity();
      //should be JSON
      Header header = entity.getContentType();
      log.debug("Content type:" + header.getValue());
      //read the body
      json = readBody(entity.getContent());
      // Read any remaining portions of the entity so we don't keep the data around
      EntityUtils.consume(entity);
    }
    catch (ClientProtocolException cpe) {
      String msg = "Error using:" + url;
      log.error(msg, cpe);
      throw new AjApiException(msg, cpe);
    }
    catch (IOException ioe) {
      String msg = "Error using:" + url;
      log.error(msg, ioe);
      throw new AjApiException(msg, ioe);
    }
    finally {
      httpPost.releaseConnection();
    }
    log.debug("Results:" + json);

    if(json.startsWith(KeyNames.ERROR_INDICATOR)){
      List<String> parts = TranslationHelper.parseCsvLine(json.trim());
      String msg = parts.get(1);
      int errRsn;
      try {
        errRsn = Integer.parseInt(parts.get(2));
      }
      catch (NumberFormatException nfe) {
        errRsn = KeyNames.ERRRSN_UNDEFINED;
      }
      throw new AjApiException(msg, errRsn);
    }
    else{
      return json;
    }
  }


  /**
   * From a URL, extract everything up to the parameters
   * @param url the url
   * @return the resource path from the URL
   */
  public static final String extractUri(String url){
    String result = null;
    int pos = url.indexOf("?");
    if(pos>=0){
      //strip the parms
      result = url.substring(0, pos);
    }
    else{
      //no parms, just return
      result = url;
    }

    return result;
  }

  /**
   * Remove the parameters coded on the URL and create an
   * HttpParams object with those parameters
   * @param url the URL
   * @return the http parameters
   */
  public static UrlEncodedFormEntity buildHttpEntityParmsFromUrl(String url){
    List<NameValuePair> formparams = new ArrayList<NameValuePair>();

    int pos = url.indexOf("?");
    if(pos>=0){
      //process parms
      String queryString = url.substring(pos + 1).trim();
      if(queryString.length() > 0){
        String[] queryParms = queryString.split("&");
        for(String queryParm:queryParms){
          String[] parts = queryParm.split("=");
          formparams.add(new BasicNameValuePair(parts[0], parts[1]));
        }
      }
    }

    UrlEncodedFormEntity result;
    try {
      result = new UrlEncodedFormEntity(formparams);
    }
    catch (UnsupportedEncodingException uee) {
      throw new IllegalStateException(uee);
    }

    return result;
  }

渡す URL は次のとおりです: http://maps.googleapis.com/maps/api/directions/json?sensor=false&origin=PO+BX+4471,TUSTIN,CA,92782&destination=700+Civic+Center+Drive +West+-+3rd+Floor,Santa+Ana,CA-California,92702 Google マップ API を呼び出します。

この URL をブラウザーに入力すると、JSON でルート情報が返されます。上記のメソッドを使用して呼び出すと、次のようになります。

{
   "routes" : [],
   "status" : "REQUEST_DENIED"
}

この時点で、どこに行けばよいかわかりません。

4

1 に答える 1

0

この問題は、ソフトウェアに HTTP Post を使用していて、Google が get しか受け付けないことが原因で発生しました。問題を取得して解決するために電話するように変更しました。

于 2013-06-28T13:49:38.637 に答える