11-19-2018 05:15 AM
Hello,
I am looking for code samples or examples of using TokenAuthInterceptor instead of BasicAuthInterceptor.
NuxeoClient nuxeoClient = new NuxeoClient.Builder()
.url(url)
.authentication("Administrator", "Administrator")
.connect();
Thank you.
11-19-2018 05:19 AM
Hello,
Documentation about authentication can be found there. Here below an example:
NuxeoClient nuxeoClient = new NuxeoClient.Builder()
.url(url)
.authentication(new TokenAuthInterceptor("YOUR_TOKEN"))
.connect();
Note: We're currently working on improving this documentation.
11-19-2018 05:35 AM
Do you have more details in how to build the token (the format, the hash function) ?
How the token will be interpreted by the Nuxeo Client ?
Thank you!
11-19-2018 05:59 AM
Nuxeo Java Client doesn't handle handshake phase. You first need to acquire a token by following this [documentation](https
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.