我正在尝试(并且必须)使用twilio rest api使用 angularjs创建/更新用于 ip 消息传递的通道。
下面是我的代码:我面临的问题是,POST
参数不起作用。频道创建时名称为空值。请帮我。
.controller('updatechannel',function($scope, $http) {
$http({
method : "POST",
url : "https://ip-messaging.twilio.com/v1/Services/IS*******/Channels" ,
headers:{
'authorization': '*******',
'Content-Type':
'application/x-www-urlencoded'
},
data :{
"friendlyName":"NEW_FRIENDLY_NAME"
}
}).success(function(data,status, header, config) {
$scope.channelname = data;
}).error ( function (data, status, header, config) {
$scope.channelname = 'ERROR';
});
})