Get date from Google Custom Search API

How can I get date data like google search. Can this be obtained? I never found it in the Google Custom Search API. The second photo that I publish is just a fragment that received a date and some description about it. The first image is from Google search news, and the second is Google Custom Search

Google search

Google Custom Search API

+5
source share
1 answer

The following API request returns metadata, such as published time, only if it is mentioned in its HTML source.

GET https://www.googleapis.com/customsearch/v1?key=APIkey&cx=CustomSearchEngineID&q=rambo


And refer to the Metatag section
enter image description here

And voila!
enter image description here

enter image description here Hope this helps :)

0
source

Source: https://habr.com/ru/post/1676143/


All Articles