You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hunjianghu/WeChat/Authentication.java

13 lines
294 B

package WeChat;
import javax.servlet.http.Cookie;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpSession;
public class Authentication {
// 用cookie验证用户身份
public static boolean islegal(HttpServletRequest request){
return true;
}
}