我想通过xmlrpc将页面上传到confluence。
我可以登录,但我不知道如何在java中表示“页面”。调用远程过程时
XmlRpcClientConfigImpl config = new XmlRpcClientConfigImpl();
config.setServerURL(new URL("xxxxxxx/rpc/xmlrpc"));
XmlRpcClient client = new XmlRpcClient();
client.setConfig(config);
try {
String token = (String) client.execute("confluence2.login", new String[] {"login","password"});
//Object page = null;
//Object result = client.execute("storePage", new String[] {token, (String) page});
System.out.println(token);
} catch (XmlRpcException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
网页的类型是什么?
答案 0 :(得分:0)
简单:根据https://drupal.org/node/1267522,它只是一个HashMap。
答案 1 :(得分:0)
这是一张地图。您可以在此处查看网页地图的有效键/值:https://developer.atlassian.com/confdev/confluence-rest-api/confluence-xml-rpc-and-soap-apis/remote-confluence-data-objects - 查看" Page"部分。