我正在使用Stripe建立付款系统,我想向客户对象添加一些元数据。我想将我的工作区ID添加到客户的元数据属性中。我尝试了以下代码,但返回以下错误:
⛔️ Error:
Error: Invalid val: {:_bsontype=>"ObjectID", :id=>"\\HÉ\u001E��\u000F�=��"} must be a string under 500 characters
我已经记录了添加到此元数据属性中的工作区ID,但似乎只是一个常规的mongodb ObjectId。谁能看到我做错了吗?
应该向我创建的客户添加元数据的代码
// find the current User and use his workspace ID
const user = await User.findOne({ _id: req.userId });
const workspaceId = user._workspace;
// get the payment plan
const plan = await stripe.plans.retrieve('plan_EK1uRUJLJcDS6e');
// // then we create a new customer
const customer = await stripe.customers.create({
email,
source,
metadata: {
workspace_id: workspaceId
}
});
res.status(200).json({
message: 'payment complete',
subscription: adjustedSubscription
});
答案 0 :(得分:3)
您存储在metadata
中的值只能be strings of up to 500 characters。在这种情况下,您需要将workspaceId
解析为字符串。看来您想在该toString()
上运行ObjectId
或toHexString()
。