示例#1
0
 public static async Task <Item[]> GetFeeds()
 => GetFeedsJson.FromJson(await BcyJson.GetFeeds()).Data.ItemInfo;
示例#2
0
 public static async Task <Item[]> GetFeeds_Dance(string direction = "loadmore")
 => GetFeedsJson.FromJson(await BcyJson.GetFeeds_Dance(direction)).Data.ItemInfo;
示例#3
0
 /// <summary>
 /// 获取推荐(ok)或特定频道内容(error:20200611)
 /// </summary>
 /// <param name="cid">channel_id</param>
 /// <param name="refer">feed,channel/channel_video(Just use channel is OK!)</param>
 /// <param name="direction"></param>
 public static async Task <Item[]> GetFeeds(string cid, string refer = "channel", string direction = "loadmore")
 => GetFeedsJson.FromJson(await BcyJson.GetFeeds(cid, refer, direction)).Data.ItemInfo;