duo_client_java
duo_client_java copied to clipboard
According to the API documentation ([retrieve-users](https://duo.com/docs/adminapi#retrieve-users)), to retrieve specific users you need to specify the params like this: ``` usernames=cjones&usernames=mwong ``` On my request I've done something like this: ```...
@mmoayyed had asked for this in https://github.com/duosecurity/duo_client_java/pull/29 I took a side trip to implement a Builder to make it easier, so now I need to actually add the new functionality...
`com.duosecurity.client.Http` is a per-request object and it is instantiating a new `OkHttpClient` instance in its constructor. `OkHttpClient` should be shared across all requests rather than a new instance created for...
When using Universal Prompt to send authorization requests to Duo Security, provide for a secure strategy that allows the caller to control which authentication factors would be allowed for the...