我很少使用我的应用程序中的 http 调用 CRM 应用程序。我需要知道是通过 SOAP 还是 REST。我能知道它是通过 REST 还是 SOAP 使用 url 吗?或者有没有办法找到如何确定协议。代码片段如下:
HttpRequestBase request = new HttpGet(url);
request.setParams(/*some HttpParams*/);
ResponseHandler<String> responseHandler = new UnicodeResponseHandler();
String response = httpClient.execute(request, responseHandler);
/* where httpClient is an instance of org.apache.http.client.HttpClient */
/* where url is a http url */