Files
elasticsearch-js/docs/doc_examples/d35c8cf7a98b3f112e1de8797ec6689d.asciidoc
2024-12-05 13:28:38 -06:00

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);
----