"send" method works only for bot(JABBAR). "send" method not working for MSN, YAHOO, MSN &AIM.
Hi
I am using following code for sending message. It is giving
output as,
success msg='sent'
But it is not working. the message is not delivered to the user.
<?
$url = 'https://www.imified.com/api/bot/';
$data = array(
'botkey' => 'A9909123-8BC1-4202-B9358B144F7CB701',
'apimethod' => 'send',
'userkey' => 'F52AAA76-91E4-49AD-BEFD6992B4AC80D7',
'msg' => 'hiii',
);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_USERPWD, '***@yahoo.com:cleveritics009');
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_TIMEOUT, 100);
$xml = curl_exec($ch);
curl_close($ch);
print_r($xml);
?>
Please any one look at it.
This code only works for ***@bot.im. For other id's like
GMAIL, YAHOO, MSN & AIM it is giving message as,
success msg='sent'/
but not delivering message to users
2 Posted by gaute on 08 Oct, 2009 01:17 PM
Hi, I got gmail to work some time ago. For msn and yahoo I have never been able to get it to work. My Yahoo is also now down - bummer.
It sums up to similar experience as cleveriticsbot
Gaute
3 Posted by mlucas on 18 Oct, 2010 04:20 PM
Sorry for the late response regarding your issue. Is this still an issue that you are currently experiencing? I will be monitoring this page for a reply and I look forward to helping resolve this for you.
-Matt Lucas
IMified Support