react-native-fetch-polyfill
react-native-fetch-polyfill copied to clipboard
can't add header
trafficstars
return fetch(CommonStyle.BaseUrl + 'history/' + userID, { headers: { 'quidtoken': userID, } },{timeout: 10})
Hi @TaraSinghDanu, you should be able to add headers just like you would normally with fetch.
Although, make sure timeout is provided alongside the headers as the 2nd argument provided to fetch. Example:
fetch(CommonStyle.BaseUrl + 'history/' + userId, {
headers: {'quidtoken': userID},
timeout: 10
})