I have created a function app and calling that azure function using webhook. I have used typescript in the azure function. I am not sure how to get the execution context in that.
In C#, we have
public static async void Run([HttpTrigger(AuthorizationLevel.Function, "get", "post", Route = null)]HttpRequestMessage req, TraceWriter log)
{
string JSON = await req.Content.ReadAsStringAsync();
},
I can deserialize this to get the RemoteExecutionContext.
Is there any way of getting the same with typescript?
const httpTrigger: AzureFunction = async function (context: Context, req: HttpRequest): Promise<void> { // Code }
Thanks
Daivat Vartak (v-9d...
225
Super User 2025 Season 1
Muhammad Shahzad Sh...
106
Most Valuable Professional
Eugen Podkorytov
95