FACEBOOK Login Example
index.html ///
window.fbAsyncInit = function() {
appId: '490986011016528', // App ID
channelUrl: 'http://localhost:8000/', // Channel File
status: true, // check login status
cookie: true, // enable cookies to allow the server to access the session
xfbml: true // parse XFBML
FB.Event.subscribe('auth.authResponseChange', function(response)
if (response.status === 'connected')
{
document.getElementById("message").innerHTML += "<br>Connected to Facebook";
//SUCCESS
else if (response.status === 'not_authorized')
{
document.getElementById("message").innerHTML += "<br>Failed to Connect";
//FAILED
{ document.getElementById("message").innerHTML += "<br>Logged Out";
FB.login(function(response) {
if (response.authResponse)
{
{
console.log('User cancelled login or did not fully authorize.');
},
{scope: 'email,user_photos,user_videos'});
FB.api('/me', function(response) {
var str="<b>Name</b> : "+response.name+"<br>";
str +="<b>Link: </b>"+response.link+"<br>";
str +="<b>Username:</b> "+response.username+"<br>";
str +="<b>id: </b>"+response.id+"<br>";
str +="<b>Email:</b> "+response.email+"<br>";
str +="<input type='button' value='Get Photo' onclick='getPhoto();'/>";
str +="<input type='button' value='Logout' onclick='Logout();'/>";
document.getElementById("status").innerHTML=str;
{
FB.api('/me/picture?type=normal', function(response) {
var str="<br/><b>Pic</b> : <img src='"+response.data.url+"'/>";
document.getElementById("status").innerHTML+=str;
{
FB.logout(function(){document.location.reload();});
// Load the SDK asynchronously
var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
if (d.getElementById(id)) {return;}
js = d.createElement('script'); js.id = id; js.async = true;
js.src = "//connect.facebook.net/en_US/all.js";
ref.parentNode.insertBefore(js, ref);
<h2>Facebook OAuth Javascript Demo</h2>
Click on Below Image to start the demo: <br/>
<img src="http://hayageek.com/examples/oauth/facebook/oauth-javascript/LoginWithFacebook.png" style="cursor:pointer;" onclick="Login()"/>
<br/><br/><br/><br/><br/>
<script src="//connect.facebook.net/en_US/all.js"></script>
No comments:
Post a Comment