【发布时间】:2021-12-18 18:46:11
【问题描述】:
我正在使用 Azure Function 隔离 .net 5 HttpTrigger。
当使用'#'而不是'?'传递参数时如何使用URL'参数'?
示例:https//some.sample.url/path#param1=someValue¶m2=someOtherValue
我需要这些值:
param1=someValue;
param2=someOtherValue;
背景资料:
https://www.rfc-editor.org/rfc/rfc6749@4.2.2。访问令牌响应:
For example, the authorization server redirects the user-agent by
sending the following HTTP response (with extra line breaks for
display purposes only):
HTTP/1.1 302 Found
Location: http://example.com/cb#access_token=2YotnFZFEjr1zCsicMWpAA
&state=xyz&token_type=example&expires_in=3600
【问题讨论】:
标签: url azure-functions .net-5 url-parameters