我已将以下测试https.onCall
函数部署到firebase上的Cloud Functions中-使用节点10部署:
export const helloWorld = functions.https.onCall((data, context) => {
return {
"message": "Hello, world",
}
});
从节点环境进行测试时,此函数将按预期返回。
但是,在我的Flutter(android)应用程序中-使用Cloud functions plugin for Flutter,尽管登录了(通过电话号码auth),但我仍然收到以下身份验证错误:
颤振代码:
void _checkAuth() async {
print("Check auth");
final FirebaseAuth _auth = FirebaseAuth.instance;
var user = await _auth.currentUser();
print(user.toString());
_testFunCall();
}
void _testFunCall() async {
HttpsCallable callable = CloudFunctions.instance
.getHttpsCallable(functionName: 'helloWorld');
try {
final HttpsCallableResult result = await callable.call();
print(result.data);
} on CloudFunctionsException catch (e) {
print('caught firebase functions exception');
print(e.code);
print(e.message);
print(e.details);
} catch (e) {
print('caught generic exception');
print(e);
}
}
错误:
I/flutter ( 4662): caught firebase functions exception
I/flutter ( 4662): UNAUTHENTICATED
I/flutter ( 4662): Unauthenticated
I/flutter ( 4662): null
有什么想法吗?
答案 0 :(得分:1)
问题是在部署到云功能时使用了Node 10。
节点10当前处于beta中。切换到节点8,它可以正常工作:
在云功能目录的package.json
中,切换:
"engines": {
"node": "10"
},
收件人:
"engines": {
"node": "8"
},