namespace Application.Abstractions.YouTube; /// /// YouTube PubSubHubbub(WebSub) 구독 관리 /// 채널의 새 영상/생방송 알림을 푸시로 수신 /// public interface IYouTubePubSubService { /// 특정 채널의 피드 구독 신청 Task SubscribeAsync(string channelId, CancellationToken ct); /// 특정 채널의 피드 구독 해지 Task UnsubscribeAsync(string channelId, CancellationToken ct); /// Atom Feed 알림 파싱 YouTubePubSubNotification? ParseNotification(string atomXml); /// HMAC 서명 검증 bool VerifySignature(string payload, string signature); }