Thanks for being a part of WWDC25!

How did we do? We’d love to know your thoughts on this year’s conference. Take the survey here

How to include clickable image in apple news template.

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.

How to include clickable image in apple news template.
 
 
Q