我正在编写用于调用REST API的java代码。
我使用以下代码获得406错误
public List<BlogBean> view_blogsbytagXml(String tag,String limit) {
final String VIEW_BLOGSBYTAG1="api/blogs/tag/"+tag+".xml?limit="+limit+"";
return webResource.path(VIEW_BLOGSBYTAG1).header(ConfigurationUtil.AUTHENTICATION_HEADER, authentication)
.accept(MediaType.APPLICATION_XML_TYPE).get(new GenericType<List<BlogBean>>(){});
}
连接是, 私人最终WebResource webResource; private final String authentication;
authentication = ConfigurationUtil.getAuthenticationKey();
ClientConfig config = new DefaultClientConfig();
Client client = Client.create(config);
webResource = client.resource(ConfigurationUtil.BaseURI);
我在上面的代码中遇到406错误
但是当我把String作为
时 final String VIEW_BLOGSBYTAG="api/blogs/tag/"+tag+".xml";
它没有为我显示错误..