gpt4 book ai didi

Swift Firebase 函数错误 : NSCocoaErrorDomain

转载 作者:搜寻专家 更新时间:2023-10-31 21:46:11 25 4
gpt4 key购买 nike

当我尝试从 Swift 运行 Firebase 函数时,我收到一条错误消息:

Error Domain=NSCocoaErrorDomain Code=3840 “JSON 文本未以数组或对象开头,并且未设置允许片段的选项。” UserInfo={NSDebugDescription=JSON 文本未以数组或对象开头,并且未设置允许片段的选项。}

这是 Firebase 函数:

exports.helloWorld = functions.https.onRequest((request, response) => {
response.send("Hello from Firebase!")
})

这是我的 Swift 代码:

Functions.functions().httpsCallable("helloWorld").call { (result, error) in
if error == nil {
print("Success: \(result?.data)")
} else {
print(error.debugDescription)
}
}

最佳答案

如果您没有在客户端指定正确的区域,您可能会看到此错误。例如:

lazy var functions = Functions.functions(region: "europe-west1")

关于Swift Firebase 函数错误 : NSCocoaErrorDomain,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51186055/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com