我正在尝试https://maker.ifttt.com/trigger/event_name/with/key/xxxxxxxxxxxxxxxxxxxxxxxxxxx
使用 Angular 2 发送 http POST 以使用 IFTTT 制造商 webhook。
正在接收请求,但未收到正文。
post(): Promise<string> {
let headers = new Headers({ 'Content-Type': 'application/json'});
let options = new RequestOptions({ headers: headers });
console.log(options)
let body = { "value1": "21223232"};
console.log(body)
return this.http.post(this.webhookUrl, body, options)
.toPromise()
.then(this.extractData)
.catch(this.handleError);
{{Value1}}应该有value1: 21223232
并且可以打印,但我没有运气。
另外值得注意的是:
curl -X POST -H "Content-Type: application/json" -d '{"value1":"21223232"}' https://maker.ifttt.com/trigger/event_name/with/key/xxxxxxxxxxxxxxxxxxxxxxxxxxx
作品
有谁之前经历过这个吗?