PubNub Server无法正确格式化消息

时间:2015-11-03 02:07:45

标签: php android json pubnub

我有服务器配置与Android客户端通话:

<?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);

print_r($info);
print_r($post_data);

?>

和html:

<!doctype html>
<html>
<head>
    <title>PubNub PHP Test Page</title>
</head>
    <body>
        <form method="POST" action="index.php">
            <input type="submit" name="submit" value="TestSendMessage" />
        </form>
    </body>
</html>

发布功能在服务器中工作,因为我可以看到消息到达客户端Android应用程序的日志控制台,但消息永远不会正确解析,因此在给出SubscribeCallback的列表视图中不会出现:

public void subscribeWithPresence(String channel) {
    this.channel = channel;
    Callback subscribeCallback = new Callback() {
        @Override
        public void successCallback(String channel, Object message) {
            if (message instanceof JSONObject) {
                try {
                    JSONObject jsonObj = (JSONObject) message;

                    JSONObject json = jsonObj.getJSONObject("data");
                    final String name = json.getString(Constants.JSON_USER);
                    final String msg = json.getString(Constants.JSON_MSG);
                    final long time = json.getLong(Constants.JSON_TIME);
                    if (name.equals(mPubNub.getUUID())) return; // Ignore own messages
                    final ChatMessage chatMsg = new ChatMessage(name, msg, time);
                    presentActivity.runOnUiThread(new Runnable() {
                        @Override
                        public void run() {
                            // Adding messages published to the channel
                            mChatAdapter.addMessage(chatMsg);
                        }
                    });
                } catch (JSONException e) {
                    e.printStackTrace();
                }
            }
            Log.d("PUBNUB", "Channel: " + channel + " Msg: " + message.toString());

        }

        @Override
        public void connectCallback(String channel, Object message) {
            Log.d("Subscribe", "Connected! " + message.toString());
            //hereNow(false);
            // setStateLogin();
        }
    };
    try {
        mPubNub.subscribe(this.channel, subscribeCallback);
        //presenceSubscribe();
    } catch (PubnubException e) {
        e.printStackTrace();
        // Checking if success
        Log.d("Fail subscribe ", "on channel: " + channel);
    }
}

单击TestSendMessage产生:

,在浏览器中测试服务器输出
Array ( [0] => 1 [1] => Sent [2] => 14465159776373950 ) {"type":"groupMessage","data":{"chatUser":"SERVER","chatMsg":"Now lets talk","chatTime":1446514201516}}

并在应用程序中输出行:Log.d("PUBNUB", "Channel: " + channel + " Msg: " + message.toString());

的日志输出

返回:D/PUBNUB: Channel: MainChat Msg: {"type":"groupMessage","data":{"chatUser":"SERVER","chatMsg":"Now lets talk","chatTime":1446514201516}}

应该如此,但消息永远不会出现在消息的ListView中,因此无法解析JSON。

JSON标记在Constants类中很简单:

public static final String JSON_GROUP = "groupMessage";
public static final String JSON_USER = "chatUser";
public static final String JSON_MSG = "chatMsg";
public static final String JSON_TIME = "chatTime";

如何重新配置​​服务器发送以允许应用程序解析成功?

1 个答案:

答案 0 :(得分:4)

通过PubNub发送JSON

Send the JSON object without stringifying it first。对于PHP,请不要json_encode消息。 PubNub SDK将为您编码和解码它。

此:

$post_data = array("type"=> "groupMessage", "data" => array(
    "chatUser" => "SERVER", "chatMsg" => "Now lets talk", 
    "chatTime"=>1446514201516));

不是这个:

$post_data = json_encode(array("type"=> "groupMessage", "data" => array(
    "chatUser" => "SERVER", "chatMsg" => "Now lets talk", 
    "chatTime"=>1446514201516)));

如果结果与否,请评论。