# -*- coding: utf8 -*- # To be deployed to Tecent SCF # https://console.cloud.tencent.com/scf/ import json def main_handler(event, context): srcip = event['requestContext']['sourceIp'] dest_url = "https://water-meter.bamboo.workers.dev/callback?ip=" + srcip resp = { "isBase64Encoded": False, "statusCode": 302, "headers": {"Location": dest_url, "Content-Type":"text/html"}, "body": f'
To there
' } return resp