Which one is the best practice to use social auth: opening a modal window to take data or same page loading? Thanks.
Asked
Active
Viewed 105 times
1 Answers
0
A model window is better than the page redirect.
Also when the user is already logged in on social network, you just need to show a simple ajax loader. See freelancer.com facebook login for reference.
It terms of implementation. It takes the same amount of efforts. But it has visual benefits for the user.
- The url doesn't change in the address bar.
- Automatic login with just a simple ajax loader, when the user is already logged in
- Symbolizes a third party login for the user.
- In case of an error you are still on your site.

Sorter
- 9,704
- 6
- 64
- 74
-
1Thank You for responding to it. We were confused whether what approach to follow... This will help a lot. – Raunak Singh Aug 20 '15 at 07:39