Initial setup of a cloud function.
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
import json
|
||||
|
||||
|
||||
def push_to_pubsub(request_params):
|
||||
print(json.dumps(request_params))
|
||||
|
||||
|
||||
def main(request):
|
||||
request_json = request.get_json(silent=True)
|
||||
request_args = request.args
|
||||
|
||||
if request_json:
|
||||
push_to_pubsub(request_json)
|
||||
elif request_args:
|
||||
push_to_pubsub(request_args)
|
||||
else:
|
||||
raise Exception("No data provided.")
|
||||
return {"status": "ok"}
|
||||
@@ -0,0 +1 @@
|
||||
Flask==1.1.2
|
||||
Reference in New Issue
Block a user