Questions tagged [azure-http-trigger]

121 questions
0
votes
1 answer

Azure Functions: how to call an HttpTrigger Function from EventGridTrigger Function

I have an EventGridTrigger Function which is invoked whenever an event is published to the event grid topic. The default code for this function used to log the eventData without any issues. I want to send this data to another HttpTrigger Function…
0
votes
0 answers

How to implement Azure Durable Functions in Serverless Framework

Problem How to add Azure Durable Functions to the Serverless framework. Serverless Configuration (..trimmed) event: orchestration-handler: handler: index.run events: - http: true name: req methods: …
0
votes
2 answers

Unable to deserialize an object in HTTP-triggered Azure Functions v4 dotnet-isloated

I have a POST function like the following pattern: [Function("save")] public async Task SaveAppAsync([HttpTrigger(AuthorizationLevel.Anonymous, "post", Route = "v1/save")] HttpRequestData req) { ... } The following method…
Arash
  • 3,628
  • 5
  • 46
  • 70
0
votes
1 answer

To run http trigger from Azure Data Factory by Schedule Trigger in ADF

I try to use triggers to run httptrigger from the Azure Data Factory. But I get a timeout error message instead. Because the ADF function app activity only lasts 230 seconds, Httptrigger does not respond in that period.It displays the timeout issue…
0
votes
1 answer

HTTP Listener in a HTTP Trigger Azure Function

I have a HTTP Listener console app that works on my local machine. When I try to use it inside a HTTP Trigger Azure Function. I always get the 418 error code. In my console app: HttpListener listener = new HttpListener(); try { …
0
votes
1 answer

Using Azure Logic App HTTP Action with many endpoints

I'm using an HTTP Action inside an Azure Logic App. I want to send requests to an adress www.example.com with many endpoints (\1, \2 ..). I don't want to create an HTTP Action for every endpoint, so is there any way to specify all those endpoints in…
0
votes
1 answer

unzip Http FormFile in Azure Function

I have a front hand in which the user can download a zip. My idea is to use http triggered azure function to unzip that file and send it to Azure blob storage. Therefore I am simulating the http function with postman sending the zip in the…
0
votes
1 answer

Timer triggered Durable function schedule

I am currently building an azure durable function for my organization. The requirement is to run this orchestration every weekday during midnight. With eternal functions we can only provide a delay. How can I achieve this goal through a cron…
0
votes
1 answer

Azure function dotnet isolated process (DotnetWorker) Got strange exception

I got the below exception when implementing the POST method [2022-06-17T07:14:41.723Z] Executed 'Functions.AuthenticateHttpTrigger' (Failed, Id=12bb7c91-4030-4090-a2fe-ec205702c662, Duration=424954ms) [2022-06-17T07:14:41.726Z]…
jack.pop
  • 683
  • 2
  • 6
  • 21
0
votes
1 answer

How to check status of queue trigger function programmatically in c#?

I have two azure functions, one is HttpTrigger, one is QueueTrigger. The purpose of the http trigger is to get some data from some service and put it in blob storage. The purpose of queue trigger is to get that data from blob storage and save it in…
0
votes
1 answer

Calling my python function in VS Code Azure Function App tab (http trigger)

I'm new to Azure Function App. I have my python code that I want to run when http trigger called. I have new project and calling in "__ init __.py" What is the correct way to call my code? Here is "__ init __.py": import logging import…
AnnaSh
  • 11
  • 1
  • 4
0
votes
0 answers

C# Calling an azure function http trigger from azure function timer trigger

I already have an HTTP trigger function that I have published in Azure. I want to run the HTTP trigger on daily basis. So I thought I would create another timer trigger to call the HTTP trigger. Is this the right way to do it?
0
votes
1 answer

where to input the parameters in azure function http triger?

my function is published and working on Azure, if I do: http://localhost:7071/api/WriteName?n=myName It is working, but how can I input the parameter on the real HTTP address with the key…
ILovePizza
  • 141
  • 1
  • 8
0
votes
0 answers

Azure Function HTTP trigger intermittent 502 Bad Gateway

I have an Azure Function HTTP trigger listening to Twilio webhooks. The AF is sitting on a premium service plan. It is returning intermittent 502 errors to Twilio at a fairly high rate of 6% (out of hundreds or thousands of successfuls). I really…
J Benjamin
  • 4,722
  • 6
  • 29
  • 39
0
votes
1 answer

Is it possible to use pydantic library to validate the input body of python http trigger Azure function

I am new to Azure functions and looking for a way to validate the request data received by my POST request. Is it possible to use pydantic library to perform these validations and if not what is the best way to input validations.
1 2 3
8 9