I am using the fbconnect module in my play application but I get the following error.
The file {module:fbconnect}/app/controllers/FBConnect.java could not be compiled. Error raised is : play.modules.fbconnect.FBConnectPlugin cannot be resolved
I downloaded the fbconnect from Here. Renamed the folder to fbconnect and put it in
C:/play/myproject/modules
In the dependencies.yml I put
require:
- play -> fbconnect 0.6
In C:/play/myproject/conf/application.config
# Facebook Connect
# ~~~~~
fbconnect.id=APP_ID
fbconnect.apiKey=API_KEY
fbconnect.secret=APP_SECRET
fbconnect.model=models.User
fbconnect.landUrl=/
What I am doing wrong. after downloading the fbconnect and making the required changes in dependencies.yml and application.conf. I run play dependencies as well.
Thanks in advance