Hummingbird v1

GRATUIT
Par vikhyat | Mise à jour a month ago | Entertainment
Popularité

5 / 10

Latence

109ms

Niveau de service

100%

Health Check

N/A

Retour à toutes les discussions

Extraneous Ratings Information

Rapid account: Kbkarma
kbkarma
10 years ago

I was just looking at the ratings element and wondering why it has so much data in it.

For me, it looks like this (using Python, the u means its unicode):
(u’rating’, {u’positive’: True, u’negative’: False, u’value’: 4, u’neutral’: False, u’unknown’: False, u’type’: {u’simple’: True, u’star_rating’: False}})

Instead of getting a string for the rating, we get all four simple ratings as booleans. Additionally, we get the star rating and both types as another dictionary.

I think this would probably be a better option, just due to neatness:
(u’rating’, {u’type’: u’simple’, u’rating’: u’positive’})
or
(u’rating’, {u’type’: u’stars’, u’rating’: u’5’})

Rapid account: Vikhyat
vikhyat Commented 10 years ago

Thanks for the feedback. I had left the “rating” field out of the Library Entry model documentation for exactly this reason. It will indeed be changed to {type: (“simple” | “advanced”), rating: (0.5 | 1 | 1.5 | … | 5 | null)} shortly.

Rapid account: Halvkant
halvkant Commented 10 years ago

Will we have to do the conversion between simple and advanced rating modes on the client side or will it happen via server-side methods (or at least some documentation)?

Rapid account: Vikhyat
vikhyat Commented 10 years ago

Format has been updated – the rating field now returns {"type":"advanced","value":"4.0"}.

Conversion between rating types needs to be done client-side. The rules for conversion are:
[0, 2.4] -> negative
(2.4, 3.6) -> neutral
[3.6, 5] -> positive

I will be documenting this soon.

Participez à la discussion - ajoutez un commentaire ci-dessous:

Connectez-vous / Inscrivez-vous pour publier de nouveaux commentaires