3.6.1 • Published 3 years ago
jovo-plugin-auth v3.6.1
Jovo Auth Integration
Installation
npm install --save jovo-plugin-auth
Usage in the app:
const { ApiKey } = require('jovo-plugin-auth');
app.use(
new ApiKey({
'x-api-key': 'foobar'
})
);
There are two ways to pass the key to the app:
Via header object:
{
'x-api-key': 'foobar'
}
Via query param:
https://endpoint.example.com/user?x-api-key=foobar
Customization
If you want to pass your custom api key variable name, use customKeyName
and customKeyValue
const { ApiKey } = require('jovo-plugin-auth');
app.use(
new ApiKey({
'customKeyName': 'apiKey'
'customKeyValue': 'foobar'
})
);
3.6.1
3 years ago
3.6.0
4 years ago
3.5.1
4 years ago
3.5.0
4 years ago
3.4.1
4 years ago
3.4.0
4 years ago
3.3.1
4 years ago
3.3.0
5 years ago
3.2.2
5 years ago
3.2.1
5 years ago
3.2.0
5 years ago
3.1.5
5 years ago
3.1.4
5 years ago
3.1.3
5 years ago
3.1.2
5 years ago
3.1.0
5 years ago
3.0.10
5 years ago
3.0.9
5 years ago
3.0.8
5 years ago
3.0.7
5 years ago
3.0.6
5 years ago
3.0.5
5 years ago
3.0.4
5 years ago
3.0.3
5 years ago
3.0.2
5 years ago
3.0.1
5 years ago