Skip to content

Instantly share code, notes, and snippets.

@tejima
Created February 17, 2015 12:33
Show Gist options
  • Save tejima/df1d11eb8664b634fdb7 to your computer and use it in GitHub Desktop.
Save tejima/df1d11eb8664b634fdb7 to your computer and use it in GitHub Desktop.
Cloudファンクションから、外部のHTTPリクエストを叩く

Parse.Cloud.httpRequest をつかう。

Parse.Cloud.httpRequest({
  method: "POST",
  url: "https://<account_sid>:<auth_token>@api.twilio.com/2010-04-01/Accounts/<account_sid>/SMS/Messages.json",
  body: {
     From:"+14085550693",
     To: "+14085551212",
     Body:"Hi, Parse can send SMS via Twilio!"
  }
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment