带有 HTTP 请求标头的 Parse.Cloud.httpRequest 调用 [英] Parse.Cloud.httpRequest call with HTTP request header

查看:41
本文介绍了带有 HTTP 请求标头的 Parse.Cloud.httpRequest 调用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个关于云代码函数Parse.Cloud.httpRequest"的问题.我想发送与以下 curl 命令相同的 HTTP GET 请求.但它似乎不起作用.如果您发现有问题,请帮忙.

I have a question for cloud code function "Parse.Cloud.httpRequest". I want to send HTTP GET request as the same as the following curl command. But it seems it is not working. If you find something wrong, please help.

curl -H "Authorization: token xxx" "https://api.automatic.com/v1/trips"

注意:

我的代码是这样的.然后我访问了/trips.

My code is like this. Then I accessed /trips.

var express = require('express');
var app = express();

app.set('views', 'cloud/views');
app.set('view engine', 'ejs');
app.use(express.bodyParser());

app.get('/trips', function(req, res) {
    Parse.Cloud.httpRequest({
        url: 'https://api.automatic.com/v1/trips',
        headers: {
            'Authorization': 'token xxx'
        },
        success: function (httpResponse) {
            console.log(httpResponse.text);
        },
        error: function (httpResponse) {
            console.error('Request failed with response code ' + httpResponse.status);
        }
    });
});

app.listen();

这是一个日志.

E2014-07-16T04:10:46.102Z] v170: Ran custom endpoint with:
Input: {"method"=>"GET", "url"=>"/trips", "headers"=>{"version"=>"HTTP/1.1",   "host"=>"easyparking.parseapp.com", "user-agent"=>"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.153 Safari/537.36", "accept"=>"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", "accept-encoding"=>"gzip,deflate,sdch", "accept-language"=>"ja,en-US;q=0.8,en;q=0.6", "cache-control"=>"max-age=0", "x-forwarded-proto"=>"http"}}
Result: success/error was not called

推荐答案

试试这个修改:

app.get('/trips', function(req, res) {
    Parse.Cloud.httpRequest({
      url: 'https://api.automatic.com/v1/trips',
      headers: {
        'Authorization': 'token xxx'
      }
    }).then(function(httpResponse) {
      console.log(httpResponse);
      res.end(httpResponse.text);
    }, function(err) {
      console.log(err);
      res.end(err);
    });
});

这篇关于带有 HTTP 请求标头的 Parse.Cloud.httpRequest 调用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆