Create Azure Functions with Flask and automation

Поділитися
Вставка
  • Опубліковано 19 сер 2024

КОМЕНТАРІ • 5

  • @mohamedlaroussimetoui-wn6fj

    Hey thank you for the video really informative,
    Can you state from your past experience what could be the usecase for having a flask inside a az function ? what's the utility of it ?maybe some practical examples would help me understand why would we do it ?
    Thanks again !

  • @aijazshekh6865
    @aijazshekh6865 11 місяців тому

    Building wheel for grpcio (setup.py): finished with status 'error'

  • @satyasobhandasmohapatra3324
    @satyasobhandasmohapatra3324 Рік тому +1

    Hi Alfredo ,I want to expose my Azure function endpoint to receive webhook requests. I wish to authenticate the incoming requests to the end point . I think this can be done using the authentication modules in flask?

    • @alfredodeza1
      @alfredodeza1  Рік тому

      Great question! You can definitely use Flask authentication modules. There are several ways you can do this. The simplest one would be to setup up a key-based authentication and let the function know with an environment variable. Have you read through this guide? learn.microsoft.com/azure/azure-functions/security-concepts?tabs=v4&WT.mc_id=academic-0000-alfredodeza

  • @muhammadzubair440
    @muhammadzubair440 8 місяців тому

    Getting the error when click on stream logs in vs code "You must configure Application Insights to stream logs on Linux Function Apps."
    my host.js file |{
    "version": "2.0",
    "logging": {
    "applicationInsights": {
    "samplingSettings": {
    "isEnabled": true,
    "excludedTypes": "Request"
    }
    }
    },
    "extensions": {
    "http": {
    "routePrefix": ""
    }
    },
    "extensionBundle": {
    "id": "Microsoft.Azure.Functions.ExtensionBundle",
    "version": "[3.*, 4.0.0)"
    }
    }