We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c680f12 commit cbe334fCopy full SHA for cbe334f
watcher.go
@@ -24,8 +24,14 @@ import (
24
)
25
26
const (
27
- youtubeHomeUrl = "https://www.youtube.com"
+ youtubeHomeUrl = "https://www.youtube.com"
28
+
29
+ // REF: https://support.google.com/youtube/answer/6180214
30
youtubeChannelUrlPrefix = youtubeHomeUrl + "/channel/"
31
+ youtubeUserUrlPrefix = youtubeHomeUrl + "/user/"
32
+ // @todo Support "Custom URL" channel identifiers in addition to Channel-IDs and Usernames
33
+ // youtubeCustomUrlPrefix = youtubeHomeUrl + "/c/"
34
35
36
37
type watcher struct {
0 commit comments