What is the difference between ConnectController and ProviderSignInController in Spring Social

Both ConnectController and ProviderSignInController can create a connection with a service provider, so I wonder what is the difference between ConnectController and ProviderSignInController

+3
source share
1 answer

ConnectController It is intended only for managing the connection to a social site.

ProviderSignInControllerhas more features. He works from ConnectionControllerthe beginning. After connecting to the social site, he finds your local user and sends this user to your application.

+4
source

All Articles