我访问一个 API,它返回结果为成功,但我想将结果转换为 type integer
,当我尝试时,它显示错误
无法从完成阶段转换为整数
我的代码
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")));