我正在firebase的youtube频道上学习使用自定义声明进行授权的教程。在尝试调用云函数时,我不断收到来自firebase服务器的"错误请求:无效参数"响应。该函数甚至从未被调用。我猜测data
结构不正确(参数无效(,但不确定原因。有人能解释一下吗?
云功能:
exports.addAdmin = functions.https.onCall( (data: any, context: any) => {
const email = data.email;
return grantAdminRole(email).then(() => {
return{
result: 'Admin role has been assigned successfully'
}
}).catch( err => {
return{
error: err
}
})
})
async function grantAdminRole(email: string): Promise<void> {
const user = await admin.auth().getUserByEmail(email);
if( user.customClaims && user.customClaims.admin === true ) {
return;
} else {
return admin.auth().setCustomUserClaims(user.uid, {
admin: true
})
}
};
客户端:
endpoint = 'https://[MY_FUNCTION_URL]';
userEmail = 'test@test.com';
constructor( private http: HttpClient ) {}
grantAdminRole() {
this.http.post(this.endpoint, this.userEmail ).subscribe( res => {
console.log(res);
});
}
您的服务器端实现了可调用云函数,如下所示:
functions.https.onCall
但您的客户端随后尝试将其作为HTTP云函数调用,并使用:
this.http.post(this.endpoint, ...
虽然可调用函数是在HTTP函数之上构建的,但它们不能以相同的方式调用。您应该使用客户端函数SDK来调用可调用的云函数,或者实现有线协议。