GetUserRecommendations

From Gvp-public
Revision as of 21:40, 27 August 2014 by Rcalvo (talk | contribs)
Jump to navigation Jump to search

Description

This is an equivalent call to the ‘classic’ one in UNIAPI, it will be used by GVP when receiving a GetUserRecommendations request from a ‘legacy’ device. One important feature for this call is that it works with a reduced overall content set, restricted to the items that are available in all devices calling this backwards-compatible API (because old-style devices forbid showing items that cannot be played on the device).


Workaround / special error code:

Has been detected that sometimes it’s impossible to provide recommendations using OpenGVP. These situations are:

• Trying to get recommendations for a only series channel

• Trying to get recommendations for a just created user, not present yet in opengvp data.

In these situations this operation will return a status code 3 (method unavailable). When this method is called through UNIAPI proxy call, this error code should be interpreted by LabOne as using old recommendation method logic to provide recommendations to caller. In other words, when status code 3 is returned by this method, UNIAPI getUserRecommendations method should have the same behavior that before (pre OpenGVP).

Parameters

  • token (String, required)
A valid token for identifying the API session context. The token can be anonymous or logged.
  • channelId (int, required)
A number of a channel Id that wants to get a recommendation.
  • highlightType (highlightType, required)
  • mostView (int, required)
  • bestRated (int, required)
  • personalUser (int, required)
  • editorial (int, required)
  • mibRecommendations (int, optional)


Returns

Returns a JSON object containing a JSON with the personal recommendation as SimpleItem.

Example:

{

"Content": {
"ItemList": [
{
Array of SimpleItem objects + Source properties.
}
]
}

}


Exceptions


Caching

This method is not cached.


Known issues

  • None


Version history

API Version Number Change description Changes author
2.3 Initial method design Harley Cabral


See also