You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using DownKyi.Core.BiliApi.Favorites.Models;
|
|
|
|
|
using DownKyi.Core.Logging;
|
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace DownKyi.Core.BiliApi.Favorites
|
|
|
|
|
{
|
|
|
|
|
public static class FavoritesInfo
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 获取收藏夹元数据
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="mediaId"></param>
|
|
|
|
|
public static FavoritesMetaInfo GetFavoritesInfo(long mediaId)
|
|
|
|
|
{
|
|
|
|
|
string url = $"https://api.bilibili.com/x/v3/fav/folder/info?media_id={mediaId}";
|
|
|
|
|
string referer = "https://www.bilibili.com";
|
|
|
|
|
string response = WebClient.RequestWeb(url, referer);
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
var info = JsonConvert.DeserializeObject<FavoritesMetaInfoOrigin>(response);
|
|
|
|
|
if (info != null) { return info.Data; }
|
|
|
|
|
else { return null; }
|
|
|
|
|
}
|
|
|
|
|
catch (Exception e)
|
|
|
|
|
{
|
|
|
|
|
Utils.Debugging.Console.PrintLine("GetFavoritesInfo()发生异常: {0}", e);
|
|
|
|
|
LogManager.Error("FavoritesInfo", e);
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|