aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/services/api/api.service.js3
-rw-r--r--src/services/backend_interactor_service/backend_interactor_service.js2
2 files changed, 3 insertions, 2 deletions
diff --git a/src/services/api/api.service.js b/src/services/api/api.service.js
index 28f8936b..a1c6b657 100644
--- a/src/services/api/api.service.js
+++ b/src/services/api/api.service.js
@@ -160,9 +160,10 @@ const authHeaders = (user) => {
}
}
-const externalProfile = (profileUrl) => {
+const externalProfile = ({profileUrl, credentials}) => {
let url = `${EXTERNAL_PROFILE_URL}?profileurl=${profileUrl}`
return fetch(url, {
+ headers: authHeaders(credentials),
method: 'GET'
}).then((data) => data.json())
}
diff --git a/src/services/backend_interactor_service/backend_interactor_service.js b/src/services/backend_interactor_service/backend_interactor_service.js
index 9a0910dd..a99ea38a 100644
--- a/src/services/backend_interactor_service/backend_interactor_service.js
+++ b/src/services/backend_interactor_service/backend_interactor_service.js
@@ -46,7 +46,7 @@ const backendInteractorService = (credentials) => {
const updateBanner = ({params}) => apiService.updateBanner({credentials, params})
const updateProfile = ({params}) => apiService.updateProfile({credentials, params})
- const externalProfile = (profileUrl) => apiService.externalProfile(profileUrl)
+ const externalProfile = (profileUrl) => apiService.externalProfile({profileUrl, credentials})
const backendInteractorServiceInstance = {
fetchStatus,