Playframework with CSRF : “CSRF token not found in session”?

五迷三道 提交于 2019-12-03 14:14:16

Finally the problem was located in an other part of my code that was cleaning the session in the login() method, removing the csrf token with it ...

Add the below line in Global.java

@Override
public <T extends EssentialFilter> Class<T>[] filters() {
    return new Class[]{CSRFFilter.class};
}

For this you have to import

import play.api.mvc.EssentialFilter;
import play.filters.csrf.CSRFFilter;

Hope this will help you

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!