编辑**
好吧,由于提供了第一个答案,所以我能够使参数正常工作,但是现在我遇到了一个问题,即我的功能完全是在Firebase中创建一个新用户,而不更新现有的用户,即我要传递给auth.admin.updateUser是要更新其电子邮件的现有用户的身份。这是更新的云功能,它将添加新用户而不是更新现有用户:
exports.updateEmail = functions.https.onCall((data, context) => {
const email = data.email;
const uid = data.uid;
admin.auth().updateUser(uid, {
email: email
})
.then(function(userRecord) {
// See the UserRecord reference doc for the contents of userRecord.
console.log("Successfully updated user", userRecord.toJSON());
return response.status(200).json(userRecord.toJSON());
})
.catch(function(error) {
console.log("Error updating user:", error);
return response.status(404).json({
error: 'Something went wrong.'
});
});
});
我从firebase文档中获得了该功能,但是它没有按照我的预期去做。
原始帖子**
从我的Flutter代码中调用云函数时,我遇到了一些困难。我遇到的问题是,即使我使用busboy字段将uid和email字段传递给云函数,也没有定义。
我试图通过以下方式将电子邮件和uid字段传递给函数:
final request = http.MultipartRequest('POST', Uri.parse('****************my function url************'));
request.fields['email'] = Uri.encodeComponent(newEmail);
request.fields['uid'] = Uri.encodeComponent(selectedUser.uid);
request.headers['Authorization'] = 'Bearer ${_authenticatedUser.token}';
final http.StreamedResponse streamedResponse = await request.send();
在Node.js方面,我试图通过busboy使用这些字段,这是我在Node.js中的云函数:
exports.changeEmail = functions.https.onRequest((request, response) => {
if (!request.headers.authorization ||
!request.headers.authorization.startsWith('Bearer ')
) {
return response.status(401).json({
error: 'Unauthorized.'
});
}
let idToken;
idToken = request.headers.authorization.split('Bearer ')[1];
let email;
let uid;
const busboy = new Busboy({
headers: request.headers
});
busboy.on('field', (fieldname, value) => {
if (fieldname == 'email') {
email = decodeURIComponent(value);
}
if (fieldname == 'uid') {
uid = decodeURIComponent(value);
}
});
admin.auth().updateUser(uid, {
email: email
})
.then(function(userRecord) {
// See the UserRecord reference doc for the contents of userRecord.
console.log("Successfully updated user", userRecord.toJSON());
return response.status(200).json(userRecord.toJSON());
})
.catch(function(error) {
console.log("Error updating user:", error);
return response.status(404).json({
error: 'Something went wrong.'
});
});
});
即使我将字段与busboy字段一起传递,也未在函数中设置它们,但在这里我做错了什么吗?
答案 0 :(得分:0)
您为什么不使用callable function?它将自动接收身份验证数据。
文档甚至包含有关如何获取uid和电子邮件的示例:
声明功能:
exports.addMessage = functions.https.onCall((data, context) => {
// ...
});
从context参数获取用户属性:
// Message text passed from the client.
const text = data.text;
// Authentication / user information is automatically added to the request.
const uid = context.auth.uid;
const name = context.auth.token.name || null;
const picture = context.auth.token.picture || null;
const email = context.auth.token.email || null;
从Flutter代码中调用该函数:
安装cloud_functions软件包,然后:
import 'package:cloud_functions/cloud_functions.dart';
await CloudFunctions.instance.call(functionName: 'addMessage');
如果在调用该函数之前已对用户进行身份验证,那么您需要做的所有事情。
您还可以将其他参数传递给函数:
await CloudFunctions.instance.call(functionName: 'addMessage', parameters: {"email": "whatever@example.com"});
任何参数都将传递给函数侧的data参数。