I need to use the Chrome version of Omnibear to post messages with tags.
I can write posts with tags now and these tags will be linked up to the other posts on the tag page for this same tag.

Peter Stuifzand replied to a post on publog.stuifzandapp.com

The stuff that I still need to write:
- Remembers feed items (not just a cache of the feed)
- WebSub subscriber to refreshs feeds in realtime
As you can see I can already load a feed and show it in the Together microsub reader app. https://together.tpxl.io/
A microsub backend server needs some stuff, to be better at it's job.

That stuff still needs to be written.
The next step will be to create a working Microsub server. I have made a start and I can use it with Together. I can add feeds, and they will be parsed and shown in Together.
Another test from Omnibear with syndication to Twitter. After both the micropub-helper fix and Omnibear fix are combined.
Another test with posting to Twitter from Omnibear using builtin syndication.
Having fixed this bug, I found another. It seems the node modules "qs" (<https://www.npmjs.com/package/qs>) supports multiple arrayFormats. The one used by default in the micropub-helper is "indices", which serializes to array values like this: array[0]=val0&array[1]=val1. This syntax is not supported for Micropub.
If you use the arrayFormat "brackets", serializes to the more familiar array[]=val0&array[]=val1.

<https://github.com/grantcodes/micropub/issues/8>
<https://github.com/grantcodes/micropub/pull/9>

HASH(0x55b202297c58)
After some debugging I found that Omnibear deleted the mp-syndicate-to and mp-slug values to be backward compatible. Let's see if I can make a pull request and patch the problem.

Load more