Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
75 views

I created an Azure Function app. Within it, I have an HTTPTrigger function "Sync" that works very well and can be called successfully locally by (HTTP://localhost/api/sync) or Azure by using ...
David's user avatar
  • 432
0 votes
1 answer
37 views

I have created an HTTP trigger function that sends a message to a Service Bus queue in Azure. Below, I will attach the function code as well as the binding files. The issue is that sometimes the ...
Alexandra Cezar's user avatar
0 votes
1 answer
134 views

I am trying to send multiple file uploads to a function app (http trigger). The http trigger code is below, app = func.FunctionApp(http_auth_level=func.AuthLevel.ADMIN) @app.route(route="...
MenorcanOrange's user avatar
0 votes
1 answer
103 views

I have the requirement to execute an Azure Function (let's call it OperationalFunction) only once in parallel. What I mean is the following: I have two "entry point" functions: I have a ...
RB_D4S's user avatar
  • 1
0 votes
1 answer
166 views

This is my configuration, the nestjs application starts but I have not been able to execute the controllers. import { app, HttpRequest, HttpResponseInit } from '@azure/functions'; import { ...
Khael Khael's user avatar
0 votes
1 answer
1k views

I used an HTTP trigger to trigger an Azure function. My request body is only around 30MB, and the URL Length is below 4KB. The function still runs normally but when returning a response or throwing an ...
VTP's user avatar
  • 1
0 votes
1 answer
111 views

I have an Azure Function App that accepts two CSV files and a date string as input (via multipart/form-data) and returns a combined Excel file. The function works correctly when tested locally or ...
abujafar's user avatar
  • 141
0 votes
1 answer
134 views

I'm trying to get a Static Web App to communicate with a SQL Database via an HTTP Trigger in an Azure Function App. When I try to submit the form on the website, I get a 500 Internal Server Error. ...
steveclark's user avatar
0 votes
1 answer
2k views

From my JavaScript client, I send the JSON data using POST method fetch("https://%$%$%%$.azurewebsites.net/api/JointPose?", { method: "POST", ...
Astroboy's user avatar
0 votes
1 answer
581 views

I am trying to create my first Azure function. The function will be created using C# and .Net 8.0. It will run in the isolated worker model mode, and use a HttpTrigger. The HTTP request will be a POST,...
George's user avatar
  • 347
1 vote
1 answer
402 views

I am trying to use a domain as a query param in an Azure Function app. Something like this: /api/foo/bar/{url} /api/foo/bar/https%3a%2f%2flocalhost%3a3000 This doesn't hit the function (although it ...
EnenDaveyBoy's user avatar
0 votes
1 answer
105 views

I am currently trying a http trigger in azure functions. But the trigger should happen if I click a button on my flutter web application. Should I use REST API or any other way to do this. the url is ...
sai's user avatar
  • 51
0 votes
1 answer
202 views

I'm trying to develop and deploy my http trigger locally from visual code studio for the past 2 days I'm able to do this but suddenly my http trigger function gone in azure portal and also not visible ...
sai's user avatar
  • 51
0 votes
1 answer
355 views

I write an azure function in python using vs-code for excel sheet transformation and want to store result in azure blob storage ,It succesfull on localhost I deploy Azure function on azure portal but ...
Ganesh's user avatar
  • 1
1 vote
1 answer
314 views

I've got two functions (let's call them A and B) in an Azure function app (environment: Python); both are HTTP triggered function. Function A calls function B to receive a token from an external 3rd ...
atif_sreezon's user avatar
0 votes
1 answer
1k views

I was given a task to write a http trigger function which will take some blob storage on azure, read all of its blobs (JSON data) and based on some of the values inside the JSON copy the blobs into ...
Nikola Nikolic's user avatar
2 votes
1 answer
157 views

I store ClaimsPrincipal inside FunctionContext.IInvocationFeatures list (inside auth middleware) and want to take a userId (key: ClaimTypes.NameIdentifier) as an argument to cosmosDb query. I can do ...
Unnamed's user avatar
  • 292
0 votes
1 answer
1k views

I have created a function app in Azure. Using Visual Studio Code, I created a function in local, and deployed it to existing function app. The first time I deployed, it was successful. The second time,...
Beginner's user avatar
  • 349
0 votes
1 answer
509 views

I have an azure function in .net 7.0 isolated process shown below where I read the params passed on HTTPTrigger and send it as parameter to the stored procedure. But the CustomerKey value received ...
Shridevi rao's user avatar
0 votes
1 answer
919 views

I have created a new Azure Function (Python 3.10.4) that executes an HTTP Trigger using their instruction with the Azure Func tool in my CLI. Everything works great, until I try to add a package to my ...
sclem72's user avatar
  • 486
0 votes
1 answer
928 views

I have been attempting to create an Azure Function with PowerShell based on what I mentioned in the title and have been getting the following error. I will also attach the code blocks from the ...
SeanNeedsHelp's user avatar
1 vote
1 answer
2k views

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 ...
Vydai's user avatar
  • 57
0 votes
1 answer
605 views

I created an Azure Static Web App with Function App - Managed Backend as shown below. The whole system has been working for many weeks since April 2023 when I created the system. My Azure Web app ...
Ziggy's user avatar
  • 541
0 votes
1 answer
1k views

Using the http trigger outlined here - https://learn.microsoft.com/en-us/azure/azure-functions/dotnet-isolated-process-guide [Function("HttpFunction")] public static HttpResponseData ...
CDWatson's user avatar
0 votes
1 answer
343 views

I'm trying to write a http trigger using Typescript language. I have set up every thing while following Microsoft Azure Function Documentation. I used VS code for this. The thing is I cannot change ...
Maleesha Rodrigo's user avatar