play-authenticate icon indicating copy to clipboard operation
play-authenticate copied to clipboard

An authentication plugin for Play Framework 2.x (Java)

Results 99 play-authenticate issues
Sort by recently updated
recently updated
newest added

Hey, today I came across this in my logs after someone tried authenticating via LinkedIn. ``` java Caused by: java.lang.NullPointerException at play.api.libs.oauth.OAuth.retrieveAccessToken(OAuth.scala:52) at com.feth.play.module.pa.providers.oauth1.OAuth1AuthProvider.authenticate(OAuth1AuthProvider.java:118) at com.feth.play.module.pa.PlayAuthenticate.handleAuthentication(PlayAuthenticate.java:438) at com.feth.play.module.pa.controllers.Authenticate.authenticate(Authenticate.java:25) at controllers.Authenticate.authenticate(Authenticate.java:33)...

It would be great if UsernamePasswordAuthProvider could be restructured to separate the view from the business logic. For example, it currently has private methods dealing with Forms and it redirects...

In my Play! Authenticate, I need to redirect users who login with Facebook (or other social network) for the first time to be redirected to a custom URL. That way,...

enhancement

Thanks very much for this useful module. Just one request - It would be really handy to have an example implementation for a Scala Play app.

enhancement

An essential feature for many of us are "Remember Me" cookies. It would be good to have it included in Play! Authenticate.

enhancement

For example, the migration from Play Framework 2.2 to 2.3 there is no longer a Build.scala file to add to. It was deleted in the Final 2.3.0 update. Tips are...

Code smells are defined as symptom s in the program source code which are usually not bugs or technically incorrect but indicates a possible deeper problem. Anti-patterns are counterparts of...

Hi I'm new to play and the play-authenticate so the q might be a bit noobie. I am trying to adapt the sample so that it uses userid/password as login...

OAuth2 supports passing optional parameters in state. Play-Authenticate sends a generated id in the state param. Is there another way of sending a parameter for the authenticated page?

How can I request more information from social account with PA (like photos, gender from facebook or calendar from google)? Thank you in advance.