in reply to Re^5: alibaba cloud sms api
in thread alibaba cloud sms api
thanks for clear response
but i made changes and send the version through query and removed it from header, but am still getting same error
my $url = "https://dysmsapi.aliyuncs.com"; my $params = [ RegionId => '1', PhoneNumbers => '4324234', SignName => + 'fghgfhg', TemplateCode => 'fghgfh', api_version => '2018-04-08' ]; my $uri = URI->new(); $uri->query_form(@$params); $urlparam = $uri->as_string; my $req = HTTP::Request->new(POST=>$url); $req->header('Content-Type' => 'application/json; charset=UTF-8'); $req->header('access_key_id' => 'sdsadasd'); $req->header('access_key_secret' => 'asdasdsa');
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^7: alibaba cloud sms api
by poj (Abbot) on Sep 02, 2019 at 17:50 UTC |