Код: Выделить всё
curl -v https://us-central1-
.cloudfunctions.net/test
Код: Выделить всё
from firebase_admin import initialize_app, db
from firebase_functions import https_fn
import flask
initialize_app()
app = flask.Flask(__name__)
print("TEST APP")
@app.get('/test')
def hello_world():
print('Hello World')
return 'Hello, Firebase Cloud Functions with Python'
Подробнее здесь: https://stackoverflow.com/questions/791 ... hons-flask
Мобильная версия