我创建了一个包含以下代码段的插件(Java):
String username = "abcdef";
String passowrd = "somepass";
String userName = URLEncoder.encode(username, "UTF-8");
String password = URLEncoder.encode(passowrd, "UTF-8");
String url = String.format("https://example.com?format=username=%s&password=%s", userName, password);
OkHttpClient client = new OkHttpClient();
Request request = new Request.Builder().url(url).build();
Response response = client.newCall(request).execute();
我想允许用户在Confluence中更改用户名和密码,所以我一直在努力使用并知道是否有办法在Confluence中存储用户名和密码(属性是否有这样的东西),然后将它们读入插件中的Java应用程序,后者并不重要。