Chikka SMS API always Convert

2019-07-19 19:17发布

问题:

Good Day to all of you. I have a problem in Chikka SMS API I downloaded the script from github and I tried to run it and it was successful. I received the message but the problem is spaces and other characters are encoded.

This is the code that I used

<?php
include('ChikkaSMS.php');

$clientId = 'xxxxx';
$secretKey = 'xxxxxx';
$shortCode = 'xxxxxx';
$chikkaAPI = new ChikkaSMS($clientId,$secretKey,$shortCode);
$response = $chikkaAPI->sendText('UNIQUEMESSAGEID', 'MOBILENUMBER', 'YOURMESSAGE');?>

From: https://github.com/mojics/chikka_sms_api

回答1:

Sorry guys if I disturbed you. I already fixed by my self :) . I removed the urlencode(); from the ChikkaSMS.php file :)



标签: php api sms