jiangping
2024-07-25 e61a6b57161e75185ba0691a3bfa3961f7a7a13e
server/service/src/main/java/com/doumee/core/utils/Constants.java
@@ -678,8 +678,11 @@
        // 场景码,与前端约定,最终是需要前端解析
        body.put("scene", scene);
        // 正式版为 "release",体验版为 "trial",开发版为 "develop"。默认是正式版。
        body.put("env_version", "develop");
        String env_version = "trial";
        body.put("env_version", env_version);
        if(env_version.equals("release")){
        body.put("page", page);
        }
        // 透明,根据你的场景自行设置body参数
        body.put("is_hyaline", true);
        OkHttpClient client = new OkHttpClient().newBuilder().build();