meta { name: follow type: http seq: 3 } post { url: {{HUT_HOSTNAME}}/users/sellershut/inbox body: none auth: none } script:pre-request { const { nanoid } = require("nanoid") const hostname = bru.getEnvVar("HUT_HOSTNAME"); req.setBody({ "@context": "https://www.w3.org/ns/activitystreams", "id": `${hostname}/activity/follow/${nanoid()}`, "type": "Follow", "actor": `http://localhost/users/sellershut`, "object": `http://localhost/users/sellershut` }) }