rest-hapi 独立端点不返回处理程序结果

rest-hapi standalone endpoint not returning handler results

如果这是一个愚蠢的问题,请原谅我,但我上次在 javascript 中编码是将近 20 年前......我正在重新学习 javascript 这几周,我不确定我都明白了。

我正在将 hapi 与 rest-hapi 结合使用,并想添加一些 standalone endpoints, basically translating the backend portion of this Autodesk tutorial 形式的表达。

我正在使用 basic rest-hapi example 主脚本,并尝试使用以下代码添加路由:

//api/forge.js
module.exports = function(server, mongoose, logger) {
  const Axios = require('axios')
  const querystring = require('querystring')
  const Boom = require('boom')

  const FORGE_CLIENT_ID = process.env.FORGE_CLIENT_ID
  const FORGE_CLIENT_SECRET = process.env.FORGE_CLIENT_SECRET
  const AUTH_URL = 'https://developer.api.autodesk.com/authentication/v1/authenticate'

  const oauthPublicHandler = async(request, h) => {
    const Log = logger.bind('User Token')
    try {
      const response = await Axios({
        method: 'POST',
        url: AUTH_URL,
        headers: {
          'content-type': 'application/x-www-form-urlencoded',
        },
        data: querystring.stringify({
          client_id: FORGE_CLIENT_ID,
          client_secret: FORGE_CLIENT_SECRET,
          grant_type: 'client_credentials',
          scope: 'viewables:read'
        })
      })
      Log.note('Forge access token retrieved: ' + response.data.access_token)
      return h.response(response.data).code(200)
    } catch(err) {
      if (!err.isBoom){
        Log.error(err)
        throw Boom.badImplementation(err)
      } else {
        throw err
      }
    }
  }

  server.route({
    method: 'GET',
    path: '/api/forge/oauth/public',
    options: {
      handler: oauthPublicHandler,
      tags: [ 'api' ],
      plugins: {
        'hapi-swagger': {}
      }
    }
  })
}

代码有效,我可以在 nodejs 控制台中显示 access_token,但 swagger 没有得到响应:

起初我以为异步函数不能用作处理程序,但我的hapi版本是17.4.0,它支持异步处理程序。

我做错了什么?

事实证明这是一个简单的修复:我只需要在我的主脚本中指定 Hapi 服务器主机名!

问题出在 CORS 上,因为 Hapi 使用我的机器名而不是本地主机。使用

let server = Hapi.Server({
  port: 8080,
  host: 'localhost'
})

解决了我的问题。