noknok.in.th API #05 Direct Message
มาต่อกันด้วยการส่งตรง Message ถึงเพื่อนที่เราต้องการ URL: http://api.noknok.sanook.com/rest/direct_message_new Format: xml Method(s): POST Parameters: * authToken (required:GET) * message (required:POST) * message_to (required:POST) Return: * Sending status (true or false) ก็เอา code เดิมมาแก้ไข form นิดหน่อย $base = 'http://api.noknok.sanook.com/rest/auth'; $query_string = 'username=komkid&password=******'; $url = "$base?$query_string"; $xml = file_get_contents($url); $dom = new DOMDocument('1.0', 'UTF-8'); if ($dom->loadXML($xml) === false) { die('Parsing failed'); } $res = xml_to_result($dom); if($res["stat"] == "ok"){ $query_string = 'authToken='.$res["authToken"]; $str= " Send Direct Message "; $str.= " "; $str.= "message : "; $str.= "send to : "; $str.= " "; $str.= " "; echo $str; ...