使用React Native的OAuth2请求

时间:2016-05-24 22:05:05

标签: javascript oauth-2.0 react-native

我正在为我的移动应用程序使用Yelp API。 Yelp API需要OAuth2请求(使用者密钥,密钥,令牌,秘密令牌)。如何使用react native做出请求?

1 个答案:

答案 0 :(得分:-1)

您可以使用fetch api发出网络请求, 参考http://facebook.github.io/react-native/releases/0.26/docs/tutorial.html#fetching-real-data

请参阅https://github.com/github/fetch了解文档

  fetch(apiUrl, options)
  .then(function(response) {
    return response.json()
  }).then(function(json) {
    console.log('parsed json', json)
  }).catch(function(ex) {
    console.log('parsing failed', ex)
  })