|
JSONObject product = new JSONObject()
.put("product_key", PRODUCT_KEY)
.put("auth_id", AUTH_ID)
.put("auth_secret", AUTH_SECRET)
.put("subkey", subkey)
.put("events", EVENTS);
JSONArray products = new JSONArray().put(product);
GizwitsNoti gizwitsNoti = new GizwitsNoti(products,
new CallBack() {
public void call(JSONObject msg)
{
String cmd = msg.getString("cmd");
}
}
给subkey传值时 第一次传123456 可以连接以及登录机智云,也能发送指令;第二次调用时subkey改为123458时就无法连接机智云了,其他值都不变。这是为啥? 我看api,subkey是消息分发机制的区分值,这么处理有啥问题求大神指点。 |
|