api-explorer
api-explorer copied to clipboard
Custom Headers - Make them persistent
Currently, custom headers get erased after a refresh, and we have to fill them over and over again.
It would be great if we could persist them, so we can use api explorer right away.
You can also add API-specific headers on the configuration DSL, such as:
APIExplorer
.config(c => {
c.swagger2API('petshop', 'https://api.swaggerhub.com/apis/anil614sagar/petStore/1.0.0', true)
c.addHeader('HeaderName', 'HeaderValue')
}
.start()
Did you try that?
AFAIK, he want to have persistent, per user, header values. Right @pedrofmanuel-sky?