收藏
回答

Connect to api.weixin.qq.com:443,调用企业微信api超时

问题类型 API/组件名称 终端类型 微信版本 基础库版本
Bug 获取token 微信iOS客户端 3008 2.0.0

就调用企业微信的api 报超时,任何企业微信的接口都报,微信的都不报,服务器端ping 也可以ping通

OkHttpClient mOkHttpClient = new OkHttpClient();

final Request rerequest = new Request.Builder()
        .url("https://qyapi.weixin.qq.com/cgi-bin/gettoken?corpid=ID&corpsecret=SECRET")
        .build();
Call call = mOkHttpClient.newCall(rerequest);
Response execute = call.execute();
if (execute.isSuccessful()) {
    String string = execute.body().string();
    result.put("username", string);
    //响应成功
}



回答关注问题邀请回答
收藏

1 个回答

  • 你
    2021-09-16

    已解决,是服务器DNS的问题

    2021-09-16
    有用 1
    回复 1
    • 麻麻子
      麻麻子
      2022-08-23
      请问下配置那个dns,我配置了还是时而ok时而超时
      2022-08-23
      回复
登录 后发表内容