Trying to get Google to validate the output of my "Cloud-Function" in the "Response-Validation" for "Uptime-Checks".
I've used "regex" to try to validate my "Json" output but it doesn't work, when I test it I get: "Responded with "403 (Forbidden)" in 219 ms."
below is an example of what my "Source" is in the "Cloud-Function":
def example(request):
from flask import request, jsonify
import requests
postdata = {
"zzz": ["zzz"],
"zzz": ["zzz"],
"zzz": "zzz",
"zzz": {"distinct": True}
}
posturl = 'zzz'
requestheaders = {'Content-Type': 'application/json', 'X-Api-Key': 'zzz'}
r = requests.post(url=posturl, json=postdata, headers=requestheaders)
result = r.json()
return(result)
Resolved:
How I tested it:
Sidenote: