From 2b4e28296d82f87e05d08ae9ce443d94a88f9b74 Mon Sep 17 00:00:00 2001 From: ckoegel Date: Tue, 3 Feb 2026 14:32:14 -0500 Subject: [PATCH] SWI-9214 Update README --- README.md | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index ac1cfdd..076e635 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,18 @@ $ mvn install Creating the client ```Java -IrisClient client = new IrisClient(accountId, username, password); +// With Basic Auth +IrisClient client = new IrisClient("", "", ""); + +// With A Bearer Token +IrisClient client = new IrisClient("", "", "", "", ); + +// With OAuth using Client Credentials +IrisClient client = new IrisClient("", "", ""); +client.setClientId(""); +client.setClientSecret(""); + +// See IrisClient.java for all of the possible new OAuth constructors // You can then use the client to call a particular object's methods, e.g. Site s = new Site();