Azure function gives “The 'code' query parameter provided in the HTTP request did not match the expected value.”

后端 未结 3 1698
借酒劲吻你
借酒劲吻你 2021-01-20 16:24

I am developing logic app in azure portal with azure function app.Logic app gives randomly code query parameter invalid error for function . When ever error occurred i have

相关标签:
3条回答
  • 2021-01-20 16:43

    Hi this workaround worked for me

    • in your logic app replace the AzureFunctionCall activity with the HTTP activity
    • method POST
    • url: https://FUNCTION_CONTAINER.azurewebsites.net/api/FUNCTION_NAME?code=DEFAULT_FUNCTION_KEY
    • same body
    • content-type application/json

    Hope it helps

    0 讨论(0)
  • 2021-01-20 16:46

    I ran into this with a generic web hook function. The workaround I found was:

    1. Go to the Function app page in the Azure portal
    2. Select your app - You should see the menu with options "Develop", "Integrate", "Manage" and "Monitor"
    3. Select "Manage"
    4. There are two groups of keys - Function keys and Admin keys. The default Admin key was being used, so I changed the "code" parameter in my query to use the default Function key.

    If that still doesn't work, you might want to try renewing the keys or adding a new one.

    0 讨论(0)
  • 2021-01-20 16:49

    Goto yourfunction->manage->functionkey->default -click on the copy link under actions

    Just appending code

    https://{functionappName}.azurewebsites.net/api/{functionName}?code={defaultfunctionkey}

    0 讨论(0)
提交回复
热议问题