| | |
| | | public R myFeedBack(@RequestParam(value = "username",required = false) String username, |
| | | @RequestParam(value = "password",required = false) String password) |
| | | { |
| | | String resultJson = HttpClientUtil.get("https://huacheng.psciio.com/aToken?username="+username+"&password="+password, null, null); |
| | | String resultJson = null; |
| | | try { |
| | | resultJson = HttpClientUtil.httpPost("http://117.172.73.171:9901/aaToken?username="+username+"&password="+password, null); |
| | | } catch (Exception e) { |
| | | e.printStackTrace(); |
| | | } |
| | | return R.ok(resultJson); |
| | | } |
| | | |