0

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?

ILovePizza
  • 141
  • 1
  • 8

1 Answers1

1

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.

Matt Douhan
  • 677
  • 3
  • 13