Using Apito REST API with JavaUsing Unirest Library#Use the lib called Unirest for Java.noteAlways remember to replace API_SECRET of the Bearer Token and project-id of the URL with the correct value from apito console. Go to this page if you do not know where to find your api secrets and endpoints for your projectclient.javaHttpResponse<String> response = Unirest.get("https://api.apito.io/secured/rest/project-id") .header("content-type", "application/json") .header("authorization", "Bearer API_SECRET") .asString();Copy