16 lines
368 B
Plaintext
16 lines
368 B
Plaintext
// This file is autogenerated, DO NOT EDIT
|
|
// Use `node scripts/generate-docs-examples.js` to generate the docs examples
|
|
|
|
[source, js]
|
|
----
|
|
const response = await client.transport.request({
|
|
method: "POST",
|
|
path: "/_security/oidc/prepare",
|
|
body: {
|
|
iss: "http://127.0.0.1:8080",
|
|
login_hint: "this_is_an_opaque_string",
|
|
},
|
|
});
|
|
console.log(response);
|
|
----
|