Skip to content

Instantly share code, notes, and snippets.

@astrotars
Created April 2, 2020 14:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save astrotars/3a960fc092315f1bf32ffa751264f70f to your computer and use it in GitHub Desktop.
Save astrotars/3a960fc092315f1bf32ffa751264f70f to your computer and use it in GitHub Desktop.
await currentUser.sendMultipartMessage({
roomId: myRoom.id,
parts: [
{ type: "text/plain", content: "Hello world!" },
{
type: "image/gif",
url: "https://gfycat.com/failingforkedheterodontosaurus",
},
{
file: document.querySelector("#attach").files[0],
customData: { metadata: 42 },
}
],
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment