iridakos / duckrails

Development tool to mock API endpoints quickly and easily (docker image available)
https://github.com/iridakos/duckrails/wiki
MIT License
1.72k stars 108 forks source link

Getting request header dynamically using Javascript #61

Open matheuskoiti opened 4 years ago

matheuskoiti commented 4 years ago

Hello,

I'm trying to retrieve a value from a request header for using at body content section for my response. The request header the client sends looks like it: Authorization: 123#abc

Then, at body content section at DuckRails, I tried to read that value this way: var header = headers['Authorization'].split('#')[1];

But when I test the response I get a 200 Ok, but with this error:

Duckrails-Error: TypeError: Cannot read property 'split' of undefined

Am I reading the headers in a wrong way?