Skip to content

Instantly share code, notes, and snippets.

@nickname55
Created February 7, 2018 11:45
Show Gist options
  • Save nickname55/315404f0e5029feb0813fb0038385193 to your computer and use it in GitHub Desktop.
Save nickname55/315404f0e5029feb0813fb0038385193 to your computer and use it in GitHub Desktop.
Confluence REST: получить историю контента по заданному contentId
package com.pampushko.confluence.rest;
import com.pampushko.confluence.models.history.HistoryContainer;
import com.pampushko.confluence.settings.SettingsManager;
import lombok.extern.slf4j.Slf4j;
import java.io.IOException;
import java.util.HashMap;
import java.util.Map;
import java.util.Properties;
@Slf4j
public class Main
{
public static final String url = "";
private static final String username = "";
private static final String password = "";
public static void main(String[] args) throws IOException
{
//читаем настройки приложения
Properties settings = SettingsManager.getValues();
//вызываем билдер и создаем клиент
Confluence confluence = Confluence.newBuilder().baseUrl(settings.getProperty("baseUrl")).username(settings.getProperty("username")).password(settings.getProperty("password")).build();
final String contentId = "104955905";
Map<String, String> params = new HashMap<String, String>()
{
{
}
};
HistoryContainer historyContainer = confluence.getContentHistory(contentId);
System.out.println(historyContainer);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment