From c9c500a07d58fbbbe8bfd1cbc326140872ccc785 Mon Sep 17 00:00:00 2001 From: Vitaly Takmazov Date: Wed, 14 Feb 2024 10:51:09 +0300 Subject: Fetch ActivityPub profiles --- vnext/src/api/index.js | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) (limited to 'vnext/src/api/index.js') diff --git a/vnext/src/api/index.js b/vnext/src/api/index.js index 7cb56c0e..095e18b8 100644 --- a/vnext/src/api/index.js +++ b/vnext/src/api/index.js @@ -71,8 +71,7 @@ const apiBaseUrl = 'https://beta.juick.com' const client = axios.create({ - baseURL: apiBaseUrl, - withCredentials: true + baseURL: apiBaseUrl }) /** @@ -225,10 +224,10 @@ export function fetchUserUri(profileUrl) { if (profileCache[profileUrl]) { resolve(profileCache[profileUrl]) } else { - client.get(profileUrl, { - headers: { - 'Accept': 'application/ld+json' - } + let data = new FormData() + data.append('uri', profileUrl) + client.post('/api/u/', data, { + withCredentials: false }).then(response => { profileCache[profileUrl] = response.data resolve(response.data) -- cgit v1.2.3