An authentication module for Play Framework applications supporting OAuth, OAuth2, OpenID, Username/Password and custom authentication schemes.
Questions tagged [securesocial]
208 questions
3
votes
1 answer
How to implement Slick + MySQL + SecureSocial?
How do I implement SecureSocial (newest snapshot version) plugin with Slick (1.0.1) and MySQL database?
I think that I have configured everything completely.
I have something like this in my User model class:
package models.auth
import…

mrzepinski
- 419
- 2
- 8
- 21
3
votes
1 answer
Testing a Play2 application with SecureSocial using dependency injection
Thanks a lot for any guidance!
The SecureSocial plugin works fine when I run it from the browser, but I would like to be able to test the rest of my Play app now.
Quick Intro
SecureSocial's syntax looks like this:
def page =…

Meredith
- 3,928
- 4
- 33
- 58
3
votes
2 answers
Integrate SecureSocial with backend user services/storages?
Using Play! 2.0.4 and SecureSocial 2 (http://securesocial.ws/). Scala implementation. Most of this question will be directly referencing the sample here:…

crockpotveggies
- 12,682
- 12
- 70
- 140
3
votes
1 answer
Play SecureSocial Persistance with Java
I started using play 2.1 for java and SecureSocial. Currently I'm trying to add some persistance to the Users that register/sign up to the site but I'm having trouble trying to represent the model that uses SecureSocial to save/retrieve data in…

Mario López
- 81
- 1
- 1
- 4
3
votes
1 answer
View customization with securesocial & play 2
I would like to customize securesocial views.
I can't find how to specify the action URL for my forms.
When I try :
3
votes
3 answers
I can't customize the view propose by the module securesocial for play2, "not found: type RequestHeader "
I'm trying to customize the view propose by the module "securesocial" with play 2
What I've already done is :
1/ Create a new plugin name SecureViewsPlugin that implements the TemplatesPlugin under "controllers/SecuresViewsPlugin.scala"
package…

cleau
- 45
- 1
- 6
3
votes
2 answers
Play Framework + SecureSocial : java.lang.NoSuchMethodError: securesocial.controllers.ReverseLoginPage.authenticate
I'm new to using the Play Framework, and I'm trying to incorporate the SecureSocial plugin into my app with a Facebook-OAuth2 provider. I ran into this error when I sent a GET request to /login :
! @6apkmf9m3 - Internal server error, for request…

Alex
- 26,406
- 5
- 30
- 36
2
votes
2 answers
Heroku installing play framework modules
I'm trying to install a module on my heroku app. Running this locally (minus the heroku run at the start) works, but I get an error when trying to run it on Heroku.
heroku run play install securesocial-0.2.2
and here's the output
...
~ Do you want…

Joel
- 16,474
- 17
- 72
- 93
2
votes
0 answers
How to get securesocial library for Play Framwork Play 2.3.8?
There is link http://securesocial.ws/guide/installation.html. But It is not valid. Got error:-
build.sbt:15: error: object Project is not a member of package play
val main = play.Project(appName, appVersion,
appDependencies).settings(
…

masiboo
- 4,537
- 9
- 75
- 136
2
votes
0 answers
SecureSocial: How to programmatically log a user in?
I use SecureSocial module in play framework to handle user authentication.
For a specific task, I created a custom action to handle the reset password. I wonder how to programmatically log a user in without asking a user login after password reset.

mmdc
- 1,677
- 3
- 20
- 32
2
votes
2 answers
How to trace all HTTP request invoked by Playframework?
For example, I am using OAuth2 Authentication in Playframework by play-silhouette (or SecureSocial). I want to track the HTTP requests so that I could know how Playframework communicate with Facebook, which provides OAuth2 service.
Is there a way…

Hanfei Sun
- 45,281
- 39
- 129
- 237
2
votes
1 answer
Ambiguous values in Lang and requestLang
Using: PlayFramework 2.3 and SecureSocial (compatible version with 2.3)
Im receiving this error in the ViewTemplate:
[error] /Users/einevea/projects/einjar/einevault/econcepts/modules/eusers/app/services.eusers/MyViewTemplates.scala:29: ambiguous…

Daniel Conde Garcia
- 265
- 1
- 3
- 10
2
votes
1 answer
What encryption is used by default SecureSocial for SecureSocialPasswordHasher?
I've got a passwords on a datastore that were hashed using the method SecureSocialPasswordHasher.passwordHash from the package securesocial.utils.SecureSocialPasswordHasher of SecureSocial, and I have to validate them through Python.
Therefore, the…

ivanvlopes
- 75
- 7
2
votes
1 answer
Execute a Scala action inside an Java Controller (PlayFramework)
I've create an app using the Playfrawork with Java.
And I'm using the SecureSocial plugin on it.
Inside my controller there is a method that one of the process of it is to execute the handle start reset password inside the SecureSocial.
But that…

endrigoantonini
- 1,191
- 2
- 15
- 28
2
votes
1 answer
Google sign in no longer working?
I've been seeing "Bad Request Error 400" for the last few weeks whenever using Google signin on my Play Framework website (https://www.cointouch.com/). SecureSocial Config as follows:
google {
…

Chris Beach
- 4,302
- 2
- 31
- 50