Examples of WxQrSceneJson


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
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.