Azure Function - Change the name of the variable "code"

Viewed 92

According the documentation the HttpTrigger API Key has the variable name code, like this:

https://<yourapp>.azurewebsites.net/api/<function>?code=<ApiKey>

Can I change this variable name? In my case I want to change it to access_token like this:

https://<yourapp>.azurewebsites.net/api/<function>?access_token=<ApiKey>

I want to do this because I want to use Azure Functions together with a 3rd party webhook that is expects access_token as the variable name.

1 Answers
Related