My question:
How do I show/pull twitter images in pm.visualizer?
Details:
To my understanding âmedia_keysâ are for twitter images, and media.
How I found the problem:
Media keys do show in the Json response, but donât know how to pull them into visualizer.
this is an example of the pretty json
{
"data": [
{
"text": "blah blah blah",
"created_at": "2022-06-08T15:19:12.000Z",
"attachments": {
"media_keys": [
"13_1534555545646006275"
]
},
"id": "####"
},
Iâve already tried:
This was a long shot, and it didnât work
<img src="{{media_keys}}">
or this
<img src="{{attachments.media_keys}}">
Thank you