add: x-www-form-urlencoded parser
This commit is contained in:
@@ -45,6 +45,16 @@ export class MastodonApiServerService {
|
|||||||
done();
|
done();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
fastify.addContentTypeParser(['application/x-www-form-urlencoded'], { parseAs: 'string' }, function (req, body, done) {
|
||||||
|
const dataObj = {};
|
||||||
|
const parsedData = new URLSearchParams(body as string);
|
||||||
|
for (var pair of parsedData.entries()) {
|
||||||
|
//@ts-ignore
|
||||||
|
dataObj[pair[0]] = pair[1];
|
||||||
|
}
|
||||||
|
done(null, dataObj)
|
||||||
|
});
|
||||||
|
|
||||||
fastify.register(multer.contentParser);
|
fastify.register(multer.contentParser);
|
||||||
|
|
||||||
fastify.get('/v1/custom_emojis', async (_request, reply) => {
|
fastify.get('/v1/custom_emojis', async (_request, reply) => {
|
||||||
|
|||||||
Reference in New Issue
Block a user