rate method

Future<void> rate(
  1. String id,
  2. String rating, {
  3. String? $fields,
})

Adds a like or dislike rating to a video or removes a rating from a video.

Request parameters:

id - null

rating - null Possible string values are:

  • "none"
  • "like" : The entity is liked.
  • "dislike" : The entity is disliked.

$fields - Selector specifying which fields to include in a partial response.

Completes with a commons.ApiRequestError if the API endpoint returned an error.

If the used http.Client completes with an error when making a REST call, this method will complete with the same error.

Implementation

async.Future<void> rate(
  core.String id,
  core.String rating, {
  core.String? $fields,
}) async {
  final queryParams_ = <core.String, core.List<core.String>>{
    'id': [id],
    'rating': [rating],
    if ($fields != null) 'fields': [$fields],
  };

  const url_ = 'youtube/v3/videos/rate';

  await _requester.request(
    url_,
    'POST',
    queryParams: queryParams_,
    downloadOptions: null,
  );
}