So i am working on azure function my goal is to have an azure function that is triggerd by an http request that have a blob storage binding which i can retrive files through but when i try to add my blob in binding the function stop working even though i didnt even add any code the main function
this is the binding setting i am using
{
"type": "blob",
"direction": "in",
"name": "inputblob",
"path": "test/{name}",
"connection": "MyStorageConnection"
}
this is the main function i have right now
import logging
import azure.functions as func
def main(req: func.HttpRequest) -> func.HttpResponse:
logging.info('Python HTTP trigger function processed a request.')
return func.HttpResponse(f"HTTP triggered function executed successfully. Pass a name in the query string or in the request body for a personalized response.")
but it is not working it give me a 500 error when trying to trigger the function