Firebase OnCall HTTPs not actually authenticated?
The firebase docs state:
How can I create a Firebase Cloud Function in Python to convert a PowerPoint file into PNG images and return them in a zip file?
I’m working on a Firebase Cloud Function and need to implement functionality to convert slides from a PowerPoint presentation into PNG images using Python. I want the cloud function to accept a PowerPoint file via a POST request, convert each slide into a PNG image, and return these images in a zip file.
Is there a python equivalent of process.env.FUNCTIONS_EMULATOR if firebase functions?
I’m trying to find a way to check if the current running environment is the emulator in firebase functions v2 for python. The way to do this in js/ts is to use process.env.FUNCTIONS_EMULATOR. However, I have not been able to find a way to do this for python.