Skip to content

3.1.0

Choose a tag to compare

@arvindkrishnakumar-okta arvindkrishnakumar-okta released this 15 Mar 23:15
· 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");