为什么当我通过 URL 传递我的令牌时我无法授权自己,但是当我将它放在 key/value 部分的 headers 中时,它有效?

Why am I not able to authorise myself when I pass my token through the URL, but when I put it in the headers in the key/value section, it works?

这是我如何通过 URL 传递值的示例;如果我没记错的话,要在 URL 中传递任何 key/value,我只需要使用“?”在 URL 之后添加我的“键”和“值”。

我得到的错误是“401 unauthorized”。

对于查询参数,您应该使用 code,如下所示

https://<APP_NAME>.azurewebsites.net/api/<FUNCTION_NAME>?code=<API_KEY>

如果通过 Http header 则使用 x-functions-key

Documentation