Package iqq.im.http

Examples of iqq.im.http.QQHttpRequest.addGetValue()


  /** {@inheritDoc} */
  @Override
  protected QQHttpRequest onBuildRequest() throws QQException, JSONException {
    QQSession session = getContext().getSession();
    QQHttpRequest req = createHttpRequest("GET", QQConstants.URL_GET_DISCUZ_LIST);
    req.addGetValue("clientid", session.getClientId()+"");
    req.addGetValue("psessionid", session.getSessionId());
    req.addGetValue("vfwebqq", session.getVfwebqq());
    req.addGetValue("t", DateUtils.nowTimestamp() + "");
    return req;
  }
View Full Code Here


  @Override
  protected QQHttpRequest onBuildRequest() throws QQException, JSONException {
    QQSession session = getContext().getSession();
    QQHttpRequest req = createHttpRequest("GET", QQConstants.URL_GET_DISCUZ_LIST);
    req.addGetValue("clientid", session.getClientId()+"");
    req.addGetValue("psessionid", session.getSessionId());
    req.addGetValue("vfwebqq", session.getVfwebqq());
    req.addGetValue("t", DateUtils.nowTimestamp() + "");
    return req;
  }
 
View Full Code Here

  protected QQHttpRequest onBuildRequest() throws QQException, JSONException {
    QQSession session = getContext().getSession();
    QQHttpRequest req = createHttpRequest("GET", QQConstants.URL_GET_DISCUZ_LIST);
    req.addGetValue("clientid", session.getClientId()+"");
    req.addGetValue("psessionid", session.getSessionId());
    req.addGetValue("vfwebqq", session.getVfwebqq());
    req.addGetValue("t", DateUtils.nowTimestamp() + "");
    return req;
  }
 
 
View Full Code Here

    QQSession session = getContext().getSession();
    QQHttpRequest req = createHttpRequest("GET", QQConstants.URL_GET_DISCUZ_LIST);
    req.addGetValue("clientid", session.getClientId()+"");
    req.addGetValue("psessionid", session.getSessionId());
    req.addGetValue("vfwebqq", session.getVfwebqq());
    req.addGetValue("t", DateUtils.nowTimestamp() + "");
    return req;
  }
 
 
  /* (non-Javadoc)
 
View Full Code Here

  /** {@inheritDoc} */
  @Override
  protected QQHttpRequest onBuildRequest() throws QQException, JSONException {
    QQHttpRequest req = createHttpRequest("GET", QQConstants.URL_GET_GROUP_INFO_EXT);
    req.addGetValue("gcode", group.getCode() + "");
    req.addGetValue("vfwebqq", getContext().getSession().getVfwebqq());
    req.addGetValue("t", System.currentTimeMillis()/1000 + "");
    return req;
  }
 
View Full Code Here

  /** {@inheritDoc} */
  @Override
  protected QQHttpRequest onBuildRequest() throws QQException, JSONException {
    QQHttpRequest req = createHttpRequest("GET", QQConstants.URL_GET_GROUP_INFO_EXT);
    req.addGetValue("gcode", group.getCode() + "");
    req.addGetValue("vfwebqq", getContext().getSession().getVfwebqq());
    req.addGetValue("t", System.currentTimeMillis()/1000 + "");
    return req;
  }
 
 
View Full Code Here

  @Override
  protected QQHttpRequest onBuildRequest() throws QQException, JSONException {
    QQHttpRequest req = createHttpRequest("GET", QQConstants.URL_GET_GROUP_INFO_EXT);
    req.addGetValue("gcode", group.getCode() + "");
    req.addGetValue("vfwebqq", getContext().getSession().getVfwebqq());
    req.addGetValue("t", System.currentTimeMillis()/1000 + "");
    return req;
  }
 
 
View Full Code Here

 
  /** {@inheritDoc} */
  @Override
  protected QQHttpRequest onBuildRequest() throws QQException, JSONException {
    QQHttpRequest req = createHttpRequest("GET", QQConstants.URL_LOGIN_EMAIL);
    req.addGetValue("fun", "passport");
    req.addGetValue("from", "webqq");
    req.addGetValue("Referer", "https://mail.qq.com/cgi-bin/loginpage");
    return req;
  }
 
View Full Code Here

  /** {@inheritDoc} */
  @Override
  protected QQHttpRequest onBuildRequest() throws QQException, JSONException {
    QQHttpRequest req = createHttpRequest("GET", QQConstants.URL_LOGIN_EMAIL);
    req.addGetValue("fun", "passport");
    req.addGetValue("from", "webqq");
    req.addGetValue("Referer", "https://mail.qq.com/cgi-bin/loginpage");
    return req;
  }
 
  /** {@inheritDoc} */
 
View Full Code Here

  @Override
  protected QQHttpRequest onBuildRequest() throws QQException, JSONException {
    QQHttpRequest req = createHttpRequest("GET", QQConstants.URL_LOGIN_EMAIL);
    req.addGetValue("fun", "passport");
    req.addGetValue("from", "webqq");
    req.addGetValue("Referer", "https://mail.qq.com/cgi-bin/loginpage");
    return req;
  }
 
  /** {@inheritDoc} */
  @Override
 
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.