Options for how often Taddy checks a feed for updates.
enum FeedRefreshPriority {
WEBSUB
HIGH
REGULAR
LOW
INACTIVE
NEVER
}
WEBSUB
- Feed is checked immediately for updates (within 30 mins, usually much sooner). Taddy gets notified of a change to the SSS feed via a WebSub notification.HIGH
- Feed is checked 4 hoursREGULAR
- Feed is checked every dayLOW
- Feed is checked once a weekINACTIVE
- Feed is checked once a weekNEVER
- Feed is no longer checked for updates. (Only used in the rare circumstance a podcast violates our content policy).If a feed has been set as LOW, INACTIVE, or NEVER priority, you can check the reason why:
enum FeedRefreshPriorityReason {
INACTIVE_FOR_OVER_1_YEAR
DUPLICATE_FEED
ERROR_PARSING_FEED
FEED_URL_NOT_WORKING
VIOLATES_TADDY_DISTRIBUTION_POLICY
}
INACTIVE_FOR_OVER_1_YEAR
- Feed has not had any updates in the last 12 monthsDUPLICATE_FEED
- There is another feed in our database that links to the same contentERROR_PARSING_FEED
- Error parsing document when trying to check the feed for new updatesFEED_URL_NOT_WORKING
- Error when trying to load the feed url (404 error, etc)VIOLATES_TADDY_DISTRIBUTION_POLICY
- The feed has been reviewed by a Taddy staff member and is in violation of our distribution policy.How to check the FeedRefreshPriority for a comic
If you would like to know how often a feed is being checked for updates, check its
feedRefreshDetails
property.type FeedRefreshDetails {
" Taddy's unique identifier "
uuid: ID
" How often a feed is refreshed "
priority: FeedRefreshPriority
" The reason why feed has a LOW, INACTIVE, or NEVER priority "
priorityReason: FeedRefreshPriorityReason
" Date when the feed was refreshed last (Epoch time in seconds) "
dateLastRefreshed: Int
" Websub Details (if available)"
websubDetails: WebsubDetails
}
Details for the WebSub hub that notifies Taddy of any changes on the feed.
" Websub Details "
type WebsubDetails {
" Taddy's unique identifier "
uuid: ID
" The feed url for the websub "
topicUrl: String
" The url for the hub where you get the websub notification "
websubHubUrl: String
" If the websub notification is currently active "
isVerified: Boolean
}