diff options
Diffstat (limited to 'vnext/src/api')
-rw-r--r-- | vnext/src/api/index.js | 11 |
1 files changed, 5 insertions, 6 deletions
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) |