@()(implicit session: play.api.mvc.Session)
@import helper._
@main(title = "Evernote SDK Java sample for Scala / Play ") {
This application uses the Play framework to demonstrate the use of OAuth to authenticate to the Evernote web service.
Authentication
@if(session.get("token").isEmpty) {
Click here to connect Evernote
} else {
Click here to start over
}
@if(!session.get("notebooks").isEmpty) {
Notebooks
@for(notebook <- session.get("notebooks").get.split(",")) {
- @notebook
}
}
Current status
-
NoteStore URL:
@session.get("noteStoreUrl")
Token Credentials:
-
token:
@session.get("token")
}