如果这是一个愚蠢的问题,请原谅我,但是我上一次使用javascript编码的时间大约是20年前……我这几周正在重新学习javascript,我不确定我是否了解全部。
我正在将hapi与rest-hapi结合使用,并想添加一些standalone endpoints,基本上是翻译this Autodesk tutorial形式express的后端部分。
我正在使用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,但是大摇大摆没有得到响应:
起初我以为异步函数不能用作处理程序,但是我的hapi版本是17.4.0,它支持异步处理程序。
我在做什么错了?
答案 0 :(得分:0)
事实证明这很容易解决:我只需要在主脚本中指定Hapi服务器的主机名即可!
问题出在CORS,因为Hapi使用我的计算机名而不是localhost。使用
let server = Hapi.Server({
port: 8080,
host: 'localhost'
})
解决了我的问题。