Version 1.9.0
over 6 years ago by Philip Tuomey
In this release, we have made improvements to the Facebook data that we provide in all of our endpoints and also fixed an issue where a low number of results was returned in the v1/articles
response when searching using the full text option.
Facebook data
For all endpoints that return Facebook data (eg. fb_predicted_interactions
, fb_total_interactions
etc) you will now see some new pieces of data available. They are:
likes
shows how many likes a piece of content received.comments
shows how many comments were made on content.shares
shows how many times the content was shared.
So, now, the fb_data
section looks something like this:
"fb_data": {
"total_engagement_count": 6824,
"likes": 6646,
"comments": 129,
"shares": 49,
"total_count_delta": 2,
"delta_period": 1006,
"delta_period_unit": "m",
"fb_overperforming": 2.5196678402019685
}
Articles full text search bug
You would receive a lower than expected number of results if you were using the search_full_text
filter with default values for other filters on the v1/articles
API. In this release, this bug has been fixed.
Changelog
- added: [W-844] Facebook
likes
to all endpoints with Facebook social data. - added: [W-844] Facebook
comments
to all endpoints with Facebook social data. - added: [W-844] Facebook
shares
to all endpoints with Facebook social data. - fixed: [W-883] Reduced number of results when searching full text.