I try to get video's live chat, but LiveChatMessages API returns the following user's information.
- items[n].snippet.authorChannelId
YouTube Terms of Service prohibits the acquisition of information that may identify an individual.
Permissions and Restrictions
- collect or harvest any information that might identify a person (for example, usernames), unless permitted by that person or allowed under section (3) above;
What should i do?
- can't use LiveChatMessages API. (Who can use it?)
- If I don't refer to snippet.authorChannelId, I can use LiveChatMessages API.
- I don't care about anything.
There's nothing to worry about here: only obtaining from the API the property
snippet.authorChannelId
does not violate any TOS specs, since this property is nothing more than the chat poster's ID:Having an user ID -- that is that user's ID as assigned to him/her by YouTube -- does not fall under the spec you've quoted.
You may very well use that ID for to obtain the publicly available data of the respective user (i.e. YouTube channel): just call for the
Channels.list
API endpoint passing to it that ID as the parameterid
for to obtain (again only public) data about that channel in the form of aChannel resource
.Otherwise is good to be attentive at complying with YouTube's DTOS specifications and is quite advisable to be familiar with the content of that document.