I'm trying to use fetch in React Native to grab information from the Product Hunt API. I've obtained the proper Access Token and have saved it to State, but don't seem to be able to pass it along within the Authorization header for a GET request. Here's what I have so far: var Products = React.createClass({ getInitialState: function() { return { clientToken: false, loaded: false } }, componentWill