我試圖找出如何使用Powershell獲取Azure函數路由參數(段)。使用Powershell獲取Azure函數路由參數(段)
我想以某種方式在我function.json文件得到定義的方法:如果使用POST
$ req_query_ * =給我查詢參數而不是
{
"bindings": [
{
"name": "req",
"type": "httpTrigger",
"direction": "in",
"authLevel": "function",
"route": "api/{method}"
},
...
]
}
$ REQ =給我的身體在路線中定義的細分。
在此先感謝