3.1.0
·
431 commits
to master
since this release
This is a minor version upgrade release that adds functionality for Client to retrieve response from XML based back-end APIs as raw InputStream object.
API Changes:
Package com.okta.sdk.ds.RequestBuilder
Below method has been added.
InputStream getRaw(String href)
Fixes:
#516 - Client supports a way to interact with XML based back-end APIs.
Usage:
InputStream response = client.http()
.addHeaderParameter("Accept", "application/xml")
.getRaw("/api/v1/apps/${appId}/sso/saml/metadata");