Please can somebody share links of working example of Spring Social Facebook login except the sample applications on git hub that are provided by Spring Social people themselves. Especially if there is any sample code without the use of a database then that will be awesome.
相关问题
- Delete Messages from a Topic in Apache Kafka
- Jackson Deserialization not calling deserialize on
- How to maintain order of key-value in DataFrame sa
- StackExchange API - Deserialize Date in JSON Respo
- Difference between Types.INTEGER and Types.NULL in
You can use the below github example,
https://github.com/pkainulainen/spring-social-examples
Source article : https://www.petrikainulainen.net/spring-social-tutorial/
I don't know why you don't need the example given by Spring team. But the article and example code looks very much helpful to me. These getting started guides based on Spring Boot will help you,
https://spring.io/guides/gs/accessing-facebook/
http://projects.spring.io/spring-social-facebook/
Clone the repo from github
Here is the example of how to implement social login feature using spring framework.Blog of this application for precise explination.This application supprts
1) Form Login : This is classic login,where there will be a form accepting username and password.User need to submit his/her user details.
2) Social Login (Facebook,twitter & linkedin) : Here social user can signin in the application using their Facebook/Twitter/linkedin accounts. Then we add support for current users to associate their social accounts with their accounts in the application,it is also called mapping social user with local user.
Spring Social Example is the
Spring 3.x
implementation written by me, you just have to changeFacebook/Twitter
apikey
,apisecret
,callback
url andscope
as per your requirement inapplication.properties
here.