I would like to call a backend function from my mobile app. However this backend function shall be written in python. This function shall be directly callable from my mobile app, it shall access firebase, do some computations and return the result (Ideally, only if the user is authenticated...). After some searching, I found that a https request might be the correct way to do this.
But how do you write an https request in python for firebase? Can anybody point me to some code-examples or an tutorial for this? I only found a tutorial on how to write http cloud functions for google cloud...