Hi, I’m creating a custom app and I need to put a help text into de password field on the basic auth form.
How can I achieve it?
Thanks
Hi, I’m creating a custom app and I need to put a help text into de password field on the basic auth form.
How can I achieve it?
Thanks
username
and password
fields and customize their helpText
value.
That said, you’ll still have to include authentication header by yourself. The Basic authorization header can be calculated as follows:
return z.request({
//...
headers: {
Authorization:
"Basic " +
Buffer.from(
`${bundle.authData.username}:${bundle.authData.password}`
).toString("base64"),
},
});
Hi
Just changed to API Key as you suggest, and everything works perfect.
Thanks for your help!
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.