
AuthJs is a vanilla JavaScript Facebook Authentication library that enables your website to authenticate identity using Facebook Login App.
How to use it:
1. Download and load the authjs.min.js into the document.
<script src="authjs.min.js"></script>
2. Create a Facebook Login App on the Facebook Developer Tools.
3. Set the Facebook App ID.
authjs.set("YOUR APP ID HERE");4. Login & Logout your website using Facebook Login Authentication.
authjs.login(); authjs.loginout();
5. Get the current status.
authjs.status();
6. Get the user’s information.
authget.id authget.name authget.profile authget.accessToken







