Questions tagged [azure-function-app]

A function app is the container that hosts the execution of individual functions in the serverless framework Azure Functions.

A function app is the container that hosts the execution of individual functions in the framework.

Create a function app from the Azure portal

574 questions
0
votes
1 answer

Function MSDeploy and Event Grid Subscription Race Condition in ARM Template

I am deploying a function using MSDeploy extensions and then deploying event grid subscription with this function as endpoint. Event grid deployment fails with message - "details": [ { "code": "Endpoint validation", "message":…
user2848940
  • 71
  • 1
  • 12
0
votes
1 answer

Set-AzActionGroup : Exception type: ErrorResponseException

I am running a powershell script in Azure function App. The script creates an action group and metric alerts on a cosmosDB container, But the action group creation command fails, i tried with both resourceGroup name and ResourceId , it still…
0
votes
1 answer

JsonSerializationException: Unable to find a constructor for unity webgl build

I serialize a class in an azure function app and collect it via response to post in Unity3d. It's a WebGL project and it works fine on Editor but throws exception on browser (chrome/firefox): using Newtonsoft.Json; namespace ARTFunctions { …
0
votes
2 answers

ARM Template for Importing Azure Key Vault Certificate in Function App

I have a function app which calls another API with a certificate. This certificate (.pfx) file is already present in the key vault. I am using below ARM template to import the certificate to SSL settings of the function app. Note: the function app…
0
votes
1 answer

Create ILogger instance in Startup

I am working on Azure Function App .net core 3.1 with Polly retry and circuit breaker. till now I dont have problem with the logging the details to App Insights using the builder because it doesnt get initialized until the execution like below …
0
votes
1 answer

Azure Function App Python Blob Trigger Huge file sizes

I am using Azure function apps(Python) with a blob trigger to process a CSV and move the records to a event hub. I have a working code(up to 50 rows) after following a standard documentation. However I want to know what approach should be followed…
0
votes
0 answers

Setting Up TFS Aggregator CLI on Azure Function App

I'm trying to set up a new instance of Aggregator CLI as an Azure function app. I've created the app on Azure and think I've installed Aggregator CLI, but don't know how to save my Azure DevOps (formerly VSTS) Personal Access Token (PAT) to…
Ross J
  • 23
  • 1
  • 5
0
votes
1 answer

Azure AD app - client secret connected with user

please, is here any way how to make relationship between applicaiton in Azure AD and User with client secret. My use case. User ask for token with client secret(as deamon) and call my web api and a verify this token. Token is valid but there is no…
0
votes
1 answer

Client fails to show cookie sent by Azure Function App in browser storage

I have a function app that sets a cookie when reached: [FunctionName("SendCookie")] public async Task SendCookie([HttpTrigger(AuthorizationLevel.Anonymous, "get", "post","head", Route = null)] HttpRequest req, ILogger…
0
votes
1 answer

azure function upgraded blobtrigger to v2 or v3 still gets warning "Cannot Upgrade with Existing Functions"

Ive upgraded my blobtrigger from v1 to v2 and created a new function in azure, the blobtrigger runs smoothly with the new function app set to v2 or v3, created a new project in vs2019 and is set to .netCore 3.1 etc. But in azure i still get the…
Tomas
  • 33
  • 4
0
votes
1 answer

How to call an API using time trigger Azure function

I have to write an azure function using a time trigger that will hit an API every weekend and fetch the data from that API and store that data to my Azure SQL database. So, I am not getting how to call an API from time trigger azure function to…
0
votes
1 answer

EventHub Trigger funtion using python

Hope you are doing good. I need your help on basic setup for azure function using python to get the event Hub string data and push the telemetry simultaneously to the storage and web app as well. thanks
0
votes
1 answer

Call Snowflake Procedure from Azure Function App

I have procedure in Snowflake and would like to call it from my Timer Triggered Azure Function App. That procedure expects a parameter which is of type string. Following is my code snippet to connect to Snowflake and calling that procedure with…
0
votes
2 answers

Azure Function App : Error when loading V3 in portal for fresh function app?

I follow the documentation to setup an app function with runtime version V3 but it throws InternalServerError. How can I create an app function to work with V3? These are my steps: I create a fresh app service azure function app (in portal). When…
Sergio Solorzano
  • 476
  • 9
  • 29
0
votes
0 answers

Could not load file or assembly 'System.IdentityModel.Tokens.Jwt, Version=5.6.0.0 after upgrading Azure Function's nuget packages to 3.0.4 or 3.0.5

We have had an Azure Function V3 that has a reference to another C# project in a VS 2019 solution. There are some extension methods in the other C# project using System.IdentityModel.Tokens.Jwt Version=5.6.0.0 assembly to perform token validation.…
Arash
  • 3,628
  • 5
  • 46
  • 70