blob: f1599e3a89919adfe0a0de60515ef1d44a898190 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
def main(request, response):
# Set the cors enabled headers.
origin = request.headers.get(b"Origin")
headers = []
if origin is not None and origin != b"null":
headers.append((b"Content-Type", b"text/plain"))
headers.append((b"Access-Control-Allow-Origin", origin))
headers.append((b"Access-Control-Allow-Credentials", 'true'))
cookie_header = request.headers.get(b"Cookie", b"")
return (200, headers, cookie_header)
|