Questions tagged [azure-http-trigger]

121 questions
2
votes
2 answers

How azure function HttpTrigger edit code parameter name?

Azure Function HttpTrigger default use code parameter with token code, e.g: https://xxx.azurewebsites.net/api/xxxHttpTriggerCSharp?code=)#&)@^$^@#) How can I replace code name by token…
Wei Lin
  • 3,591
  • 2
  • 20
  • 52
2
votes
1 answer

Azure Functions and Swagger UI - How to display query string paramters in swagger UI?

I'm having the following Azure Function which is HTTP triggered. I have set up Swagger for my endpoints using this link here. The following API expects a set of query string parameters, namely, "name", "email", "phone", so it can do some search…
Ali
  • 847
  • 2
  • 13
  • 37
2
votes
2 answers

Running Azure function as Windows Service for Debug purposes

I have written an Azure (with http trigger method) function and it is hosted in Azure. However when I develop client applications which target the azure function I don't want to call the hosted Azure function, instead I am running the function from…
1
vote
1 answer

Azure HttpTriggers in referenced assembly are not detected by JobHost

Current I have a growing library of Function Apps (currently 14) that create different 3D models but by design each one has the same identical HttpTriggers so that the central system can call/trigger them to build and return their models. e.g.…
MonkeyFace
  • 108
  • 9
1
vote
1 answer

timeout in Azure functions App binding with events hub to send data

I have a nodeJS functions app, in which i have a http trigger function with following code. It runs successfully. With all the below code and configuration, i am able to send data to events hub from a local functions app and published functions app,…
1
vote
1 answer

How to add multiple parts in multipart/form-data in an Azure Logic App

I am using Azure logic apps to send a file over HTTP using multipart/form-data. Unfortunately it isn't clear to me how to do the multipart of the request. I have read the official documentation of microsoft on it. In their example they are only…
1
vote
1 answer

How to fix ImportError with 'EventGridPublisherClient' in Azure HTTPTrigger function?

Can anyone help me with the following error: Result: Failure Exception: ImportError: cannot import name 'EventGridPublisherClient' from 'azure.eventgrid' This is the code for the HTTPTrigger: import os import logging from azure.core.credentials…
Tobbi
  • 146
  • 7
1
vote
1 answer

Azure http trigger is not allowing to create a folder in python using makedirs

I am trying to create a new folder inside of Azure http trigger folder, in order to receive some files from an API call and save them based on the name. config_country_folder =…
alim1990
  • 4,656
  • 12
  • 67
  • 130
1
vote
1 answer

Raising multiple signalR triggers from the same Azure Http-triggered Function in isolated process context

The following code snippet has been taken from this Microsoft document: [Function("SignalRFunction")] [SignalROutput(HubName = "chat", ConnectionStringSetting = "SignalRConnectionString")] public static MyMessage Run([SignalRTrigger("SignalRTest",…
Arash
  • 3,628
  • 5
  • 46
  • 70
1
vote
0 answers

Azure HTTP Trigger. How to avoid everytime the login

I have an Azure HTTP trigger function. And it all works, except that I am executing everytime the slow Connect-ExchangeOnline -Credential $Credential How can I re-use the security token so it is only once slow. And instead of using a normal login…
Bert
  • 21
  • 3
1
vote
2 answers

Azure Function with two output bindings (Azure Queue & Blob Storage)

Is it possible to write an azure http trigger function with two output bindings, so that data not only outputs to an azure queue but also sends the same message to an azure blob storage?
1
vote
1 answer

Function runtime unreachable Docker Azure

We are attempting to use Azure functions (HTTP trigger) to trigger a Java executable (JAR) in a Dockerfile. We are able to build, tag, and run the image locally with VSCode. However, when we push it to Azure, we receive a function runtime…
1
vote
1 answer

Azure Function .NET5 Isolated Process Get Path Param from HttpRequestData

I am having path "/todo/{id}", I want to get the Id path param. [Function("Run")] public static HttpResponseData Run([HttpTrigger(AuthorizationLevel.Anonymous, "get", Route = "todo/{id}")] HttpRequestData req, …
chiaDev
  • 389
  • 3
  • 17
1
vote
1 answer

Any way to concatenate two Application setting in Configuration - Azure Function app

In Azure Function App, I have added two application settings using the Configuration tab. The first Application setting is fetching the SAS token from the Azure Key vault using @Microsoft.KeyVault(SecretUri=##). The other application setting is the…
PriyankaB
  • 65
  • 1
  • 2
  • 7
1
vote
1 answer

Error:Cannot access child value on Newtonsoft.Json.Linq.JValue

How i can access below object type value which is coming as request body from data factory output of another function app in http trigger function. Now i need to perform some operation with these ouput in http trigger function. { "functionName":…
1
2
3
8 9