You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+11-6Lines changed: 11 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,22 +22,23 @@ If you'd like to use this with Playframework, add "play2-oauth2-provider" to lib
22
22
23
23
```scala
24
24
libraryDependencies ++=Seq(
25
-
"com.nulab-inc"%%"play2-oauth2-provider"%"0.5.1"
25
+
"com.nulab-inc"%%"play2-oauth2-provider"%"0.6.0"
26
26
)
27
27
```
28
28
29
29
Otherwise, add "scala-oauth2-core" instead. In this case, you need to implement your own OAuth provider working with web framework you use.
30
+
30
31
```scala
31
32
libraryDependencies ++=Seq(
32
-
"com.nulab-inc"%%"scala-oauth2-core"%"0.5.1"
33
+
"com.nulab-inc"%%"scala-oauth2-core"%"0.6.0"
33
34
)
34
35
```
35
36
36
37
## How to use
37
38
38
39
### Implement DataHandler
39
40
40
-
Whether you use Playframework or not, you have to implement DataHandler trait and make it work with your own "User" class that may be already defined in your application.
41
+
Whether you use Playframework or not, you have to implement ```DataHandler``` trait and make it work with your own ```User``` class that may be already defined in your application.
0 commit comments