browsePageSearchCategory
Searches active stream categories
Arguments:
Name | Description | Required |
---|---|---|
first | Maximum number of categories to return | No, defaults to 10 |
text | String to search (if any) | No, defaults to blank |
Example:
const bot = new Dlive(key);
bot.browsePageSearchCategory(5, 'D').then( categories => {
console.log(categories.search.trendingCategories.list.map(category =>
`Category: ${category.title} has ${category.watchingCount} viewers`
).join('\n'));
});
Category: All has 0 viewers
Category: League of Legends (LoL) has 131 viewers
Category: Apex Legends has 90 viewers
Category: DLive has 78 viewers
Category: Spellforce Platinum Edition has 43 viewers
{
"search": {
"trendingCategories": {
"pageInfo": {
"endCursor": "4",
"hasNextPage": true,
"__typename": "PageInfo"
},
"list": [
{
"id": "category:0",
"backendID": 0,
"title": "All",
"imgUrl": "https://images.prd.dlivecdn.com/category/all.png",
"watchingCount": 0,
"__typename": "Category"
},
{
"id": "category:4794",
"backendID": 4794,
"title": "League of Legends (LoL)",
"imgUrl": "https://images.prd.dlivecdn.com/category/lxoumgqbbj3erxgq6a6l",
"watchingCount": 129,
"__typename": "Category"
},
{
"id": "category:15513",
"backendID": 15513,
"title": "Apex Legends",
"imgUrl": "https://images.prd.dlivecdn.com/category/93hlasidjfao9w8fjf",
"watchingCount": 90,
"__typename": "Category"
},
{
"id": "category:12646",
"backendID": 12646,
"title": "DLive",
"imgUrl": "https://images.prd.dlivecdn.com/category/f938qp9jfaksjdfy9",
"watchingCount": 76,
"__typename": "Category"
},
{
"id": "category:16129",
"backendID": 16129,
"title": "Spellforce Platinum Edition",
"imgUrl": "https://images.prd.dlivecdn.com/category/5526uz4n3b7jv7zrl6u",
"watchingCount": 40,
"__typename": "Category"
}
],
"__typename": "CategoryConnection"
},
"__typename": "SearchResult"
}
}
Updated over 5 years ago