0
我的用戶使用基本身份驗證登錄到我的網站。有什麼辦法,我可以使用的身份驗證的用戶的詳細信息,以作爲一個URLConnection的認證?....在JavaEE中使用URLConnection的當前用戶身份驗證
喜歡的東西
@get
@Path("/rest/getInfo)
public String giveMeTheResult(){
URLConnection conn = new URL("/service/info");
Authenticator.setDefault(getCurrentUserAuthentication());
return (String) conn.getContent();
}
我該怎麼做了getCurrentuserAuthentication一部分?
謝謝。
請參閱:https://stackoverflow.com/help/someone-answers – c0der