Package iqq.im.http

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


  /** {@inheritDoc} */
  @Override
  protected QQHttpRequest onBuildRequest() throws QQException, JSONException {
    HttpService httpService = (HttpService) getContext().getSerivce(QQService.Type.HTTP);
    QQHttpRequest req = createHttpRequest("GET", QQConstants.URL_PT4_AUTH);
    req.addGetValue("daid", "4");
    req.addGetValue("appid", "1");
    req.addGetValue("auth_token", QQEncryptor.time33(httpService.getCookie("supertoken",  QQConstants.URL_CHANNEL_LOGIN).getValue()) + "");
    return req;
  }
 
View Full Code Here


  @Override
  protected QQHttpRequest onBuildRequest() throws QQException, JSONException {
    HttpService httpService = (HttpService) getContext().getSerivce(QQService.Type.HTTP);
    QQHttpRequest req = createHttpRequest("GET", QQConstants.URL_PT4_AUTH);
    req.addGetValue("daid", "4");
    req.addGetValue("appid", "1");
    req.addGetValue("auth_token", QQEncryptor.time33(httpService.getCookie("supertoken",  QQConstants.URL_CHANNEL_LOGIN).getValue()) + "");
    return req;
  }
 
  /** {@inheritDoc} */
 
View Full Code Here

  protected QQHttpRequest onBuildRequest() throws QQException, JSONException {
    HttpService httpService = (HttpService) getContext().getSerivce(QQService.Type.HTTP);
    QQHttpRequest req = createHttpRequest("GET", QQConstants.URL_PT4_AUTH);
    req.addGetValue("daid", "4");
    req.addGetValue("appid", "1");
    req.addGetValue("auth_token", QQEncryptor.time33(httpService.getCookie("supertoken",  QQConstants.URL_CHANNEL_LOGIN).getValue()) + "");
    return req;
  }
 
  /** {@inheritDoc} */
  @Override
 
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

      login_sig:a4YzJkO9z19WM0-M6fZ9rRGyo7QhwGz7GjiQW4MiSdxldWj9uNf8D9D1DAZNlMqF
     */
   
    //尝试登录,准备传递的参数值
    QQHttpRequest req = createHttpRequest("GET", QQConstants.URL_UI_LOGIN);
    req.addGetValue("u", username);
    req.addGetValue("p", QQEncryptor.encrypt(uin, password, verifyCode));
    req.addGetValue("verifycode", verifyCode);
    req.addGetValue("webqq_type", "10");
    req.addGetValue("remember_uin","1");
    req.addGetValue("login2qq", "1");
View Full Code Here

     */
   
    //尝试登录,准备传递的参数值
    QQHttpRequest req = createHttpRequest("GET", QQConstants.URL_UI_LOGIN);
    req.addGetValue("u", username);
    req.addGetValue("p", QQEncryptor.encrypt(uin, password, verifyCode));
    req.addGetValue("verifycode", verifyCode);
    req.addGetValue("webqq_type", "10");
    req.addGetValue("remember_uin","1");
    req.addGetValue("login2qq", "1");
    req.addGetValue("aid", "1003903");
View Full Code Here

   
    //尝试登录,准备传递的参数值
    QQHttpRequest req = createHttpRequest("GET", QQConstants.URL_UI_LOGIN);
    req.addGetValue("u", username);
    req.addGetValue("p", QQEncryptor.encrypt(uin, password, verifyCode));
    req.addGetValue("verifycode", verifyCode);
    req.addGetValue("webqq_type", "10");
    req.addGetValue("remember_uin","1");
    req.addGetValue("login2qq", "1");
    req.addGetValue("aid", "1003903");
    req.addGetValue("u1", "http://web.qq.com/loginproxy.html?login2qq=1&webqq_type=10");
View Full Code Here

    //尝试登录,准备传递的参数值
    QQHttpRequest req = createHttpRequest("GET", QQConstants.URL_UI_LOGIN);
    req.addGetValue("u", username);
    req.addGetValue("p", QQEncryptor.encrypt(uin, password, verifyCode));
    req.addGetValue("verifycode", verifyCode);
    req.addGetValue("webqq_type", "10");
    req.addGetValue("remember_uin","1");
    req.addGetValue("login2qq", "1");
    req.addGetValue("aid", "1003903");
    req.addGetValue("u1", "http://web.qq.com/loginproxy.html?login2qq=1&webqq_type=10");
    req.addGetValue("h", "1");
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.