-1

how to get myKey header from cloud function?

enter image description here

1 Answers1

0

The answer to this question is in your first screenshot. Here is the request header:

console.log('Dialogflow Request headers: ' + JSON.stringify(req.headers));

just check your logs in Stackdriver and you will see a new field myKey in each request.

alp
  • 642
  • 5
  • 13