Closed claman closed 5 years ago
No worries, happy to help if I can. A couple of questions:
conf.py
, with the token redacted? A 404 error indicates that you may be specifying the wrong micropub endpoint.Thanks.
TOKEN = <redacted>
MP_ENDPOINT = 'https://micro.blog/aclaman'
MP_MEDIA_ENDPOINT = 'https://micro.blog/aclaman/media'
MP_DESTINATION = 'http://aclaman.micro.blog'
Okay, so your problem here is that you are not specifying the correct micropub endpoint and micropub media endpoint for Micro.blog. What you want is:
MP_ENDPOINT = 'https://micro.blog/micropub'
MP_MEDIA_ENDPOINT = 'https://micro.blog/micropub/media'
For more detail you can read Micro.blog's help content on their support for Micropub.
Let me know if that fixes your issue!
Thanks! It's working perfectly. Sorry for not being able to read directions
Awesome I’m so happy it worked out well for you!
Sorry, it's me again! Finally getting around to running the import process now that I have some more time, but it's not working.
I can run
bin/publish-posts
and it'll start cycling text-only posts. Declining to post works as expected, but then I'm getting a 404 error when I try to publish. As far as I can tell, I've changed toconf.py
as needed.