This repository simply lists the recent changes to the Event Registry for the users who use the system through the API but don't use the Python SDK.
Added
- when querying for articles or events, you can now additionally specify parameters
sourceLocationUri
andsourceGroupUri
. ParametersourceLocationUri
can be used to specify a location URI (obtained with location autosuggest methods) to use a set of news sources from a specific geographic location. The locations used can be cities or countries.sourceGroupUri
can be used to use in search a set of news sources that belong to a manually curated list of news sources (such as top business related sources, top entertainment sources, ...). - when querying a list of articles, valid sorting values are now also
sourceAlexaGlobalRank
(global rank of the news source) andsourceAlexaCountryRank
(country rank of the news source). - when returning articles, the details returned about the news source can now also include the source image. To obtain the source image specify
*IncludeSourceImage=true
where the*
prefix should be determined based on the type of the query you are making. The returned information about the source will then include two new fields:image
andthumbImage
.
Changed
- the previous query flag
*IncludeSourceImportance
is now changed to*IncludeSourceRanking
. The change is due to the fact that there are now multiple rankings for the source that we return. The returned value about the source is no longer propertyimportance
, but an objectranking
that contains three ranks:importanceRank
,alexaGlobalRank
andalexaCountryRank
. - the previous query flag
*IncludeSourceTag
was now changed to*IncludeSourceSourceGroups
. The returned value about the source now no longer returns propertytag
(which was not used anywhere yet) but returnssourceGroups
array. - the previous query flag
*IncludeArticleSocialScore
was now changed to*IncludeArticleShares
. Set it if you wish to obtain the information about the number of times the article was shared on social media. - the article data model (JSON format in which information about the article is returned) has changed: The
socialScore
property is now namedshares
to better represent the content. The returned object can now include also shares on Google Plus, Pinterest, LinkedIn. To view the full data format, see Article Data Model page. - the source data model has changed:
importance
property was changed to an objectranking
containing multiple indicators of source importance.
Deprecated
- when sorting articles,
sortBy
valuesourceImportance
is now deprecated. Use valuesourceImportanceRank
. Is is equvalent to reversed value ofsourceImportance
therefore also make sure to negate your existing value ofsortByAsc
value. The parameter was changed to make it comparable to added sorting optionssourceAlexaGlobalRank
andsourceAlexaCountryRank
which also represent rankings (lower value means better value).