pass auth to metadata
This commit is contained in:
parent
04c1b395b4
commit
025f149440
|
@ -105,7 +105,12 @@ export function apiStatusMastodon(router: Router): void {
|
||||||
const id = ctx.params.id;
|
const id = ctx.params.id;
|
||||||
const data = await client.getStatusContext(id, limitToInt(ctx.query as any));
|
const data = await client.getStatusContext(id, limitToInt(ctx.query as any));
|
||||||
const status = await client.getStatus(id);
|
const status = await client.getStatus(id);
|
||||||
const reactionsAxios = await axios.get(
|
let reqInstance = axios.create({
|
||||||
|
headers: {
|
||||||
|
Authorization : ctx.headers.authorization
|
||||||
|
}
|
||||||
|
});
|
||||||
|
const reactionsAxios = await reqInstance.get(
|
||||||
`${BASE_URL}/api/notes/reactions?noteId=${id}`,
|
`${BASE_URL}/api/notes/reactions?noteId=${id}`,
|
||||||
);
|
);
|
||||||
const reactions: IReaction[] = reactionsAxios.data;
|
const reactions: IReaction[] = reactionsAxios.data;
|
||||||
|
|
Loading…
Reference in New Issue