Hi, I am trying to include an Image in the Apple News template which is clickable, meaning if a user clicks on that image it should be redirected to a different page. I am using action and openURL as below but it seems though the image is loading fine but its not doing anything when I click on the image.
{
"role": "container",
"components": [
{
"role": "container",
"components": [
{
"role": "image",
"URL": "https://myImageURL.jpg",
"action": {
"type": "openURL",
"URL": "https://URLToBeRedirected"
}
}
]
}
]
}
I am using Newspreview to preview my article.json. Please let me know any resolution for this issue.