流星 http 发布到其他域

jt1*_*123 4 javascript post http meteor

所以我想在我的流星项目中使用 46elks 的短信服务。以下 php 脚本允许您发送短信:

<?
// Example to send SMS using the 46elks service
// Change $username, $password and the mobile number to send to

function sendSMS ($sms) {

  // Set your 46elks API username and API password here
  // You can find them at https://dashboard.46elks.com/
  $username = 'u2c11ef65b429a8e16ccb1f960d02c734';
  $password = 'C0ACCEEC0FAFE879189DD5D57F6EC348';

  $context = stream_context_create(array(
    'http' => array(
      'method' => 'POST',
      'header'  => "Authorization: Basic ".
                   base64_encode($username.':'.$password). "\r\n".
                   "Content-type: application/x-www-form-urlencoded\r\n",
      'content' => http_build_query($sms),
      'timeout' => 10
  )));

  return false !== file_get_contents(
    'https://api.46elks.com/a1/SMS', false, $context );
}


$sms = array(
  'from' => 'DummyFrom',   /* Can be up to 11 alphanumeric characters */
  'to' => '+46400000000',  /* The mobile number you want to send to */
  'message' => 'Hello hello!'
);
sendSMS ($sms);

?>
Run Code Online (Sandbox Code Playgroud)

现在我在我的流星项目中需要这个,我一直在尝试将它转换为流星 http.call():

HTTP.call("POST", "https://api.46elks.com/a1/SMS", {
                headers:
                {
                    "Authorization": "Basic SomeLongBase46EncodedString",
                    "Content-type": "application/x-www-form-urlencoded"
                },

                data:
                {
                    "from": "testFrom",
                    "to": "+46701111111",
                    "message": "test message"
                }
            },

            function (error, result)
            {
                if (error)
                {
                    console.log("error: " + error);
                }
                else
                {
                    console.log("result: " + result);
                }
            });
Run Code Online (Sandbox Code Playgroud)

但我不断得到的是以下错误:

error: Error: failed [403] Missing key from

Aks*_*hat 5

更改dataparams

params: {
      "from": "testFrom",
      "to": "+46701111111",
      "message": "test message"
}
Run Code Online (Sandbox Code Playgroud)

并使用auth代替Authorization文档):

"auth": username + ":" + password
Run Code Online (Sandbox Code Playgroud)