This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2016-08-31 07:15:12 -07:00
|
|
|
import axios from 'axios';
|
2016-11-13 11:42:54 -08:00
|
|
|
import LinkHeader from 'http-link-header';
|
|
|
|
|
|
|
|
export const getLinks = response => {
|
2016-11-20 10:39:18 -08:00
|
|
|
const value = response.headers.link;
|
|
|
|
|
|
|
|
if (!value) {
|
|
|
|
return { refs: [] };
|
|
|
|
}
|
|
|
|
|
|
|
|
return LinkHeader.parse(value);
|
2016-11-13 11:42:54 -08:00
|
|
|
};
|
2016-08-31 07:15:12 -07:00
|
|
|
|
|
|
|
export default getState => axios.create({
|
|
|
|
headers: {
|
|
|
|
'Authorization': `Bearer ${getState().getIn(['meta', 'access_token'], '')}`
|
|
|
|
},
|
|
|
|
|
|
|
|
transformResponse: [function (data) {
|
|
|
|
return JSON.parse(data);
|
|
|
|
}]
|
|
|
|
});
|