Evan Prodromou
Evan Prodromou
ActivityPub servers need the security extension for HTTP Signature.
I've got a JSON object like this: ```javascript { '@context': 'https://www.w3.org/ns/activitystreams#', type: 'Collection', items: [ { id: 'https://an.example/1', type: 'Person', name: 'Evan Prodromou' } ] } ``` If I `import`...
Vcard is called out in AS2 as the preferred vocabulary for Person, Group, and Organization objects. We should support it directly in this module, probably with the extension mechanism
the Link class doesn't have an accessor for the `preview` property
It'd be nice to have these values just turn into a string if needed.
In the absence of a callback argument, we should return a `Promise`. This will allow using `async/await`. ```javascript async function getNote() { let note = as.note().name('foo').content('this is a simple note').get()...
I frequently find myself special-casing the OAuth request error responses, since they are not instances of the Error class. This change adds a new class, OAuth.Error, and returns it in...