我想将get请求重定向到另一个服务器帖子。我不知道该怎么做。以下是我的代码。
服务器1:获取方法
app.get('/sampleTestApp', function (req, res) {
body={uid:'test'}
// Want to redirect here to server 2 'login/callback' url with body object
}
服务器2:发布方法
app.post('/login/callback', function (req, res) {
// success process..
}
答案 0 :(得分:0)
app.get('/sampleTestApp', function (req, res) {
axios.post(url:'server2/post', data :body={uid:'test'},fcuntion(response){
res.send(response)
})
}