Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以使用 ActiveWeb 检查可用令牌和其他 OAuth 值的标头?有没有例子回购?谢谢你。
没有示例存储库,但您可以在控制器和过滤器中访问和设置标头:
http://javalite.github.io/activeweb/snapshot/org/javalite/activeweb/HttpSupport.html#header-java.lang.String-
所以:
header(String name,String value); // sets a header on response headers(); // gets all request headers header(String name); // returns a request header
一旦你有一个标题,你可以做任何你需要的事情。
所有控制器都有这些开箱即用的方法。如果您需要在过滤器中执行此操作,您将继承此类:
http://javalite.github.io/activeweb/snapshot/org/javalite/activeweb/controller_filters/HttpSupportFilter.html