ILovePizza
ILovePizza

Reputation: 191

where to input the parameters in azure function http triger?

my function is published and working on Azure, if I do:

http://localhost:7071/api/WriteName?n=myName

It is working, but how can I input the parameter on the real HTTP address with the key code?:

http://WriteName21103515.azurewebsites.net/api/WriteName?code=7vP5MNpCK4lbif95aOwY6okKscRPDg==

Where do I put the n=myName here?

Upvotes: 0

Views: 513

Answers (1)

Matt Douhan
Matt Douhan

Reputation: 733

You can add multiple query variables using the & operator as follows

http://WriteName21103515.azurewebsites.net/api/WriteName?code=7vP5MNpCK4lbif95aOwY6okKscRPDg==&n=myName

If you need even more then simply add more using the & operator.

Upvotes: 1

Related Questions