0

Does anyone know off hand if contact (created via Mirror API 1.1) supported animated GIFs? The documentation recommends using a PNG but I was curious if other image formats were supported.

BToll
  • 89
  • 1
  • 7
Metablocks Corp
  • 1,645
  • 15
  • 24

1 Answers1

2

They're supported for content URIs within HTML payloads per this issue.

For example, attach a gif, kitten-on-skateboard.gif to your timeline item as an attachment and then use an html payload like this:

<article>
  <img src="attachment:0">
</article>

You can find further documentation on the reference guide.

mimming
  • 13,974
  • 3
  • 45
  • 74