fetch
Product Hunt API의 정보를 얻기 위해 React Native에서 사용하려고합니다 . 적절한 액세스 토큰을 얻어 State에 저장했지만 GET 요청에 대한 Authorization 헤더 내에서 토큰을 전달할 수없는 것 같습니다.
여기까지 내가 가진 것입니다 :
var Products = React.createClass({
getInitialState: function() {
return {
clientToken: false,
loaded: false
}
},
componentWillMount: function () {
fetch(api.token.link, api.token.object)
.then((response) => response.json())
.then((responseData) => {
console.log(responseData);
this.setState({
clientToken: responseData.access_token,
});
})
.then(() => {
this.getPosts();
})
.done();
},
getPosts: function() {
var obj = {
link: 'https://api.producthunt.com/v1/posts',
object: {
method: 'GET',
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json',
'Authorization': 'Bearer ' + this.state.clientToken,
'Host': 'api.producthunt.com'
}
}
}
fetch(api.posts.link, obj)
.then((response) => response.json())
.then((responseData) => {
console.log(responseData);
})
.done();
},
내 코드에 대한 기대치는 다음과 같습니다.
- 먼저
fetch
가져온 API 모듈의 데이터 가 포함 된 액세스 토큰 - 그런 다음의
clientToken
속성을this.state
수신 된 액세스 토큰과 동일 하게 설정합니다 . - 그런 다음
getPosts
Product Hunt의 현재 게시물 배열을 포함하는 응답을 반환해야합니다.
나는 수신되는 액세스 토큰이 있는지 확인 할 수 있어요 this.state
그것으로 수신하는 clientToken
속성입니다. 또한 getPosts
실행 중인지 확인할 수 있습니다.
내가받는 오류는 다음과 같습니다.
{ "error": "unauthorized_oauth", "error_description": "유효한 액세스 토큰을 제공하십시오. api 요청을 승인하는 방법에 대한 API 문서를 참조하십시오. 또한 올바른 범위가 필요한지 확인하십시오. 예 :" "개인 공개 \" "개인 엔드 포인트에 액세스합니다."}
인증 헤더에서 액세스 토큰을 올바르게 전달하지 않는다는 가정을 수행했지만 그 이유를 정확히 알 수없는 것 같습니다.