IP白名单
IP白名单中的IP是指哪里的IP,在哪里查?
我把我电脑的IP都试了还是这个问题
IP白名单中的IP是指哪里的IP,在哪里查?
我把我电脑的IP都试了还是这个问题
2019-03-12
public static AccessToken getAccessToken() { AccessToken token = new AccessToken(); String url = ACCESS_TOKEN_URL.replace("APPID",APPID).replace("APPSECRET",APPSECRET); SONObject jsonObject = doGetStr(url); if (jsonObject!=null) { System.out.println(jsonObject.toString()); token.setTokenString(jsonObject.getString("access_token")); token.setExpiresIn(jsonObject.getString("expires_in")); } return token; }
public static AccessToken getAccessToken() { AccessToken token = new AccessToken(); String url = ACCESS_TOKEN_URL.replace("APPID",APPID).replace("APPSECRET",APPSECRET); JSONObject jsonObject = doGetStr(url); if (jsonObject!=null) {// System.out.println(jsonObject.toString()); token.setTokenString(jsonObject.getString("access_token")); token.setExpiresIn(jsonObject.getString("expires_in")); } return token; }
也可以这样改一下输出一下你的IP
举报