Why does a Python request from Firebase Cloud Functions result in a CoreFoundation error?
I am attempting to make a request to a third party API via a python script in a Firebase cloud function (2nd generation cloud functions python public preview): def foo(req: https_fn.Request) -> https_fn.Response: url = 'https://catfact.ninja/fact' res = requests.get(url) return…