Skip to content
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

requires a couple of minor changes to work circa 2021 #6

Open
Kilozen opened this issue Mar 1, 2021 · 0 comments
Open

requires a couple of minor changes to work circa 2021 #6

Kilozen opened this issue Mar 1, 2021 · 0 comments

Comments

@Kilozen
Copy link

Kilozen commented Mar 1, 2021

The code in the Readme does not currently work as-is.

1- The word "cloud." needs to be removed from the line that contains
"...src="http://cloud.github.com..."

2- As mentioned in this article: https://too-clever-by-half.blogspot.com/2016/11/the-secret-500-item-blogger-feed.html Blogger seems to paginate its feeds at 150 posts per chunk now, rather than 500, so to get all posts for a site with over 150, you need to specify the full range of posts in multiple lines of 150 each.

Here is the exact code that worked for me (you'll need to change it to use your blog's URL) :

<script src="http://github.com/downloads/jhwilson/Create-a-Blogger-archive-page/Make-Blogger-Archive-Page.js" type="text/javascript"> </script>

<script src="http://persimmonforge.blogspot.com/feeds/posts/default?max-results=150&amp;start-index=1&amp;alt=json-in-script&amp;callback=LoadTheArchive"> </script>

<script src="http://persimmonforge.blogspot.com/feeds/posts/default?max-results=150&amp;start-index=151&amp;alt=json-in-script&amp;callback=LoadTheArchive"> </script>

<script src="http://persimmonforge.blogspot.com/feeds/posts/default?max-results=150&amp;start-index=301&amp;alt=json-in-script&amp;callback=LoadTheArchive"> </script>

<script src="http://persimmonforge.blogspot.com/feeds/posts/default?max-results=150&amp;start-index=451&amp;alt=json-in-script&amp;callback=LoadTheArchive"> </script>

etc.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant