如何在 stream.io nodejs 中将图像添加到用户配置文件?

How to add image to user profile in stream.io nodejs?

我正在尝试使用以下代码将图像添加到我的用户个人资料中,但是当我 运行 我的应用程序时它似乎不起作用。有谁知道如何在 Node 中正确执行此操作?

client.user('the-user-id').update({
  name: "Gwen",
  occupation: "Software Engineer",
  gender: "female",
  image: "https://avatars1.githubusercontent.com/u/1069159?s=400&u=43561f3ac9eda2d28a4fc154443b0ad34ebc5208&v=4"
});

我明白了,您必须将个人资料图片命名为 "profileImage",如下所示:

client.user('the-user-id').update({ 姓名: "Gwen Stafani", 职业: "Software Engineer", 性别: "female", profileImage: "https://images.pexels.com/photos/415829/pexels-photo-415829.jpeg?auto=compress&cs=tinysrgb&dpr=1&w=500"});