企业微信 get请求 设置可信域名

import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class ValidController {

    @GetMapping("/xxxxx.txt")
    public String getText() {
    //返回下载的txt里的内容
        return "xxxx";
    }
}

企业微信 get请求 设置可信域名_第1张图片

企业微信 get请求 设置可信域名_第2张图片

你可能感兴趣的:(企业微信,java,服务器)