反应本地应用程序身份验证插件网络错误

时间:2019-03-20 19:31:34

标签: ruby-on-rails react-native oauth oauth-2.0 doorkeeper

我试图在Rails应用程序中使用OAuth登录创建一个React Native应用程序。

我有这个反应本机设置

const config = {
  issuer: 'http://app.domain.tld',
  clientId: '85bb84b9cb0528b1f64b7c77586507b3ca5e69b11abe36ae1e54e88a6150c21e',
  clientSecret: '0d3c0713437e0028a121a0c2294cc9a72f4eb5609416935a2860e20f176c7855',
  redirectUrl: 'com.domain://com.domain',
  responseType: 'code',
  scopes: [],
  dangerouslyAllowInsecureHttpRequests: __DEV__,
  // clientAuthMethod: 'post',
  serviceConfiguration: {
    authorizationEndpoint: 'http://app.domain.tld/oauth/authorize',
    tokenEndpoint: 'http://app.domain.tld/oauth/token',
    // revocationEndpoint: 'http://app.domain.tld/oauth/revoke'
  },
  additionalParameters: {
    approval_prompt: 'force'
  }

}

// use the client to make the auth request and receive the authState
try {
  const result = await authorize(config)
  // result includes accessToken, accessTokenExpirationDate and refreshToken
  console.log('result', result)
} catch (error) {
  console.log('error', error.message)
}

oaut应用程序如下所示: enter image description here

当我按下按钮登录我的应用程序时,我得到一个浏览器窗口,可以在其中登录我的Rails应用程序,并将其重定向到oauth应用程序的授权页面。授权我的应用程序后,我收到消息“网络错误”重定向到该应用程序。有了该消息,我无法找出问题所在,也许任何人都可以帮助我。

在服务器日志中,我可以看到:

Redirected to com.domain://com.domain?code=54f3b4c03ea3724522f9a7983e2ea1b9037336076cd52cb875f9654d5d79784a&state=8xmiicVcPKN980ZDZUwBnw

在调试器用户界面中,我得到以下错误日志:

error Error: Network error
    at createErrorFromErrorData (ReactNativeART.js:10)
    at ActivityIndicator.js:72
    at MessageQueue.__invokeCallback (ReactNativeART.js:472)
    at blob:http://localhost:8081/1fccf34b-97b0-4c42-81fa-f0e1391a3ad3:2358
    at MessageQueue.__guard (ReactNativeART.js:373)
    at MessageQueue.invokeCallbackAndReturnFlushedQueue (blob:http://localhost:8081/1fccf34b-97b0-4c42-81fa-f0e1391a3ad3:2357)
    at debuggerWorker.js:80

所以我认为这是有问题的。该应用未向服务器发出任何进一步请求以获取access_token。怎么了?

0 个答案:

没有答案