Package org.hamster.weixinmp.model.qr

Examples of org.hamster.weixinmp.model.qr.WxQrSceneJson


  public WxQrEntity remoteQrcodeCreate(String accessToken,
      boolean isTemporary, Long sceneId, Long expire_seconds)
      throws WxException {
    Map<String, String> params = getAccessTokenParams(accessToken);

    WxQrSceneJson scene = new WxQrSceneJson();
    scene.setScene_id(sceneId);
    WxQrActionInfoJson action = new WxQrActionInfoJson();
    action.setScene(scene);
    WxQrCreateJson requestJson = new WxQrCreateJson();
    requestJson.setAction_name(isTemporary ? "QR_LIMIT_SCENE" : "QR_SCENE");
    requestJson.setAction_info(action);
View Full Code Here

TOP

Related Classes of org.hamster.weixinmp.model.qr.WxQrSceneJson

Copyright © 2018 www.massapicom. 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.