google / google/googleapis.dart
how to pass a key value generated by the Google console
- Dominant language
- Dart
- Stars
- 419
- Forks
- 136
- Avg merge
- 1h 21m
- Merged PRs (30d)
- 5
Description
```
final messages = await _youTubeApi.liveChatMessages.list(
video.items!.last.snippet!.liveChatId!,
["id", 'snippet', "authorDetails"],
Key: keys);
print(messages);
```
This list method only support
```
core.String liveChatId,
core.List part, {
core.String? hl,
core.int? maxResults,
core.String? pageToken,
core.int? profileImageSize,
core.String? $fields,
core.String? Key,
```
Contributor guide
Research direction
Start with the _youTubeApi.liveChatMessages.list call and the displayed liveChatMessages.list signature, focusing on how the Google console key is passed. Compare the requested Key argument with the available parameters and verify the expected request behavior. Done means the key can be passed as intended or the limitation is clearly identified.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- dart
- Domain
- api
- Issue type
- Bug
- Difficulty
- 3/5
- Estimated time
- 1-2 days
- Activity status
- Stale
- Clarity
- Needs clarification
- Newbie friendliness
- 35/100