예제 #1
0
        /** {@inheritDoc} */
        public override void onHttpStatusOK(QQHttpResponse response)
        {
            JSONObject json = new JSONObject(response.getResponseString());

            if (json.getInt("retcode") == 0)
            {
                JSONObject obj = json.getJSONObject("result");
                group.setGid(obj.getLong("account"));
            }

            notifyActionEvent(QQActionEvent.Type.EVT_OK, group);
        }