-
Notifications
You must be signed in to change notification settings - Fork 116
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Proposal: Fast Follow fallbacks and broader compatibility #330
Comments
|
The "lengthening the URL" bit isn't an issue (the QR code above has a lot of error correction added to it but isn't complex). One potential suggestion: JSON-LD has a schema type for PodcastSeries. If you look at Podnews podcast pages, or Castopod pages, you'll see that we've both used the "identifier" field to add the GUID in there. Podchaser has JSON_LD too, but doesn't yet use the GUID as an identifier - perhaps we should try to push for that. Also in the JSON_LD is the RSS address, title, description, etc. Spotify also uses JSON_LD in this way. If we were to strongly suggest that fast-follow pages contained a JSON_LD schema that should contain the GUID, then that would make all podcast pages on the web machine-readable, and help significantly with all kinds of things. |
I think 4 is extremely important and I will continue to fight for it for full compatibility, podcasters' control, and inclusivity. I have a thousand business cards with a QR Code. How do I add Fast Follow to it since the URL is already set? I can't. No podcaster should have to add their GUID to a URL as their only option, they should be able to add the feature to a URL without changing that URL. Here's a clean, simple QR Code that can be scannable at small sizes: But here's the same URL, now with Fast Follow (I think I got all the code): |
Having the URI as the only option requires the podcaster to do the work to include it. Where does one even find their podcast GUID? Support the data in the headers and HTML allows anyone to easily support it through a plugin or automatic integration. And podcasters don't have to think about it again. But if the URI is the only option, they have to know to use that URL to generate a QR Code or redirect, and they would have to ensure they properly add the GUID to the URL. And what happens if they get it wrong or the GUID changes? Then any existing links or QR Codes that had the GUID "baked into" the URI will become invalid. |
Your podcast host would give you a URL that works including the GUID. That's the ideal. The GUID never changes, by the way. That's the whole point of it. It's algorithmically generated from the first RSS feed you ever had. So, if we were going to change (and complicate) the spec, would you agree with putting it in the JSON schema for a PodcastSeries? We already know that trying to put things in HTTP headers is beyond the comprehension of most podcasters anyway (see Google Podcasts for an example). The advantages of ensuring its in a schema would help everyone. Here's the full schema in a Podnews page; but you'd be able to only have the
|
I would also add - both those QR codes are fine to scan. If we've learnt anything over the last two years, it's that QR codes are robust, that they work even if they're quite complex, and people understand them. This complex one has been in use in every store and cafe for the last two years in my state. Another, much more complex one, has been used down the road in NSW. |
Further, supporting non-URI methods would allow all past URLs and QR codes to still work. So for the woman who put her podcast website QR code on 2,000 business cards, she could activate something on her site and all those 2,000 business cards are suddenly Fast-Follow-compatible. Or for the man who put a subscribe/follow URL in the episode notes for all his past 1,000 episodes, a quick switch makes all 1,000 of those past calls to action now Podcasting 2.0 friendly. This really isn't complicating the spec, it's providing for much greater control, versatility, and prevents waste. @jamescridland, can you help me understand why you're opposed to it? So far, all I've understood from you is essentially "the URI is sufficient," but no reasons against these fallbacks. |
I was just trying to keep things simple for developers, and didn't see the benefit of the change. A lot of the reasons given were just concerns about the current hashtag construction. But it seems that JavaScript can read response headers of pages - and can parse for the Alternatively, as a different suggestion to using the You'll find this schema in, among other places, Podnews, Podchaser, Spotify and Castos.
|
The schema would be great, and I would think that—or a The unfortunate thing, however, is that the URL body must be loaded in order to read either schema or meta tags. Thus the header tag would be far more performative. |
It's been a year. I'd like to refresh this because this feature is almost completely audience-focused (and I think we need to consider the audience with more of our features). I fully support a GUID in the URL hash to trigger Fast Follow. And I also still think we need to support fallback methods of an HTTP header and an HTML The main reasons I think we need these fallbacks:
|
I understand how the current Fast Follow feature works: adding a hash to a URL.
But I strongly urge us to standard additional methods for broader support and compatibility.
Reposting an updated version of my previously shared thoughts on how I think Fast Follow should work.
overcast://x-callback-url/add?url=https://feeds.podcastmirror.com/theaudacitytopodcast
is my Overcast deep link.A. Adding the podcast GUID to any URL, as is the current draft.
B. Adding a tag to the headers, like
podcast-guid: XXXXXX
orpodcast-fast-follow: XXXXXX
. This tag would need to be read before following any redirect.C. Adding a tag in the page HTML, like
<meta name="podcast-guid" content="XXXXXX">
or<meta name="podcast-fast-follow" content="XXXXXX">
. A podcasting 2.0 app would follow that fallback order, and then launch the browser if no GUID.The result would be an experience that could work for any device, but especially work nicely for podcasting 2.0 apps.
I would absolutely love to add the GUID header tag to all FollowthePodcast.com pages for my users, but I'm not interested in telling them to add a GUID to their URLs or lengthening the URL (which would result in a more complicated QR Code). I want it to "just work" for my members and any podcast consumers.
The text was updated successfully, but these errors were encountered: