Я пытаюсь вызвать API с суперагентом в моем приложении реакции, как это:
import superagentPromise from 'superagent-promise';
import _superagent from 'superagent';
import { Base64 } from 'js-base64';
const API_ROOT = 'https//myapiurl.com/api';
const superagent = superagentPromise(_superagent, global.Promise);
login: (username, password) => {
let encrypt = Base64.encode(`${username}:${password}`);
return superagent.get(`${API_ROOT}/initSession`)
.use(tokenPlugin).set('Authorization', `Basic ${encrypt}`)
.then(responseBody)
}
, но при любом вызове реагируйте, добавьте 'http://localhost:8001' к моему вызову, в отладке chrome я получил "URL запроса http://localhost:8001/https//myapiurl.com/api/initSession'
Понятия не имею, два дня я ищу решение ...
Спасибо заранее.