Reputation: 191
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
Reputation: 733
You can add multiple query variables using the & operator as follows
If you need even more then simply add more using the & operator.
Upvotes: 1