PubNub Server does not format message properly
问题 I have the server configuration to speak to the Android clients as: <?php require_once("mysql.class.php"); require_once("lib/autoloader.php"); // Setting up the PubNub Server: use Pubnub\Pubnub; $pubnub = new Pubnub( "pub-c...", ## PUBLISH_KEY "sub-c..." ## SUBSCRIBE_KEY ); // Publishing : $post_data = json_encode(array("type"=> "groupMessage", "data" => array("chatUser" => "SERVER", "chatMsg" => "Now lets talk", "chatTime"=>1446514201516))); $info = $pubnub->publish('MainChat', $post_data);