我访问一个API,它成功返回结果,但是我想将结果转换为integer
类型,当我尝试时,它向我显示错误
无法从completionStage转换为整数
我的代码
WSRequest req1 = ws.url("https://localhost/v1.0/mobile/user/profile")
.addHeader("Authorization", token);
CompletionStage<? extends WSResponse> rsp1 = req1.get();
int a;
return a = rsp1.thenApply(rs->ok(rs.asJson().findPath("user").findPath("id")));