I’m getting into Azure a little bit, and have been through their tutorials here. This, however, seems like it’s only good for a string query to the HTTPTrigger. I’m wondering if there is a way to do something like: I’m not too familiar with how Azure functions work, or if this is even possible with their framework (or at all
Tag: azure-functions
Return PDF in Azure Function via HttpResponse (PyPDF2)
I created an Azure Function that writes user data into specific fields of a pdf and returns that pdf as a response to the client. However, I always get a 500 error code, even though all the steps up until the last seem to work just fine and it also runs locally without issue. Here’s my init.py: I can return
Azure function deployment failed: “Malformed SCM_RUN_FROM_PACKAGE when uploading built content”
I have two Azure accounts. And I tried to deploy the same function to these two accounts (to the function apps). The deployment to the 1st account – successful, but to the 2nd account – failed. The only big difference between the two accounts is that I do not have direct access to the resource group that the 2nd account’s
Connection timed out when I try to connect posgrest sql server on digitalocen and azure function
I have a postgres database running on a digital ocean server. The database is protected by a firewall and ssl root certificate, I add the Outbound addresses provided by the Azure Function App to the database firewall and I am passing the certificate through the connection string. But when I upload my function to the cloud the connection sends a
How to Post JSON to Durable Azure Function (Python)?
I would like to call Durable Azure Functions from Azure Data Factory. I would like to post json to Functions and get status when Function processing have completed. My ultimate goals is to successfully run Functions which takes 10min without timeout. I have already successfully executed Azure Function Activity from ADF with method GET. Now I need advice to modify
Sharepoint file storage give password expired reason through password not expired using python
Unable to upload the file in SharePoint, since yesterday the code is working fine used stored file in Sharepoint now am getting the below error: Exception: (‘Error authenticating against Office 365. Error from Office 365:’, ‘AADSTS50055: The password is expired.’) The same thing happened for the other two accounts even. The function uploadMeta_file(filepath_meta) to call Sharepoint File “c:UsersDesktopworksamplecookiepopup-kana-api.venvlibsite-packagesshareplumoffice365.py”, line 80,
How to structure azure functions python project
I’m messing around with Azure Functions with Python and running into issues with getting a proper project directory structure. My goal is to have a library directory that I can put all the business logic in and then reference that from the functions entry point and also have a test directory that can test the functions and the library code