SlideShare a Scribd company logo
1 of 108
Download to read offline
Facebook JavaScript SDK
Facebook JavaScript SDK
Yi-Fan Chu, 2015
Social Network Application
Department of Computer Science, University of Taipei
Facebook JavaScript SDK
Youā€™ve learned something related beforeā€¦
Itā€™s not so hard as you think :)
We got some fun time later :)
Get comfy :) Letā€™s roll out!
Before we startā€¦
Facebook JavaScript SDK
1.Essential Knowledge
2.Technical Details
3.Implementation
Things weā€™ll learn today
Facebook JavaScript SDK
Essential Knowledge
Part 1 of 3
Facebook JavaScript SDK
Facebook Developers Website
Facebook App
JavaScript SDK
Graph API
Essential Knowledge
Facebook JavaScript SDK
App Dashboard
Documents
SDKs
Developer Tools
https://developers.facebook.com
Facebook Developers Website
The most important support while developing Facebook App.
Manage your app and see all your App info here.
Right place, right kit. Use the right SDK corresponding to your platform.
Tutorials and details of SDK and API.
There are some tools to help you develop Facebook App.
Facebook JavaScript SDK
Facebook Developers
Create your Facebook App here!
Facebook JavaScript SDK
App Dashboard
Control your Facebook App here!
Facebook JavaScript SDK
Facebook Developers Website
Facebook App
JavaScript SDK
Graph API
Essential Knowledge
Facebook JavaScript SDK
Website: present information to users
Web App: interact with users
Website v.s Web App
Facebook JavaScript SDK
Account Creation
Personalization
Social
Facebook App
Login your App with a single click, and the account is cross-platform.
You could access to the personal information of your users, e.g. name, email, gender..
Let you know who are the users that are also friends in Facebook.
The beneļ¬ts you get when you create a Facebook App.
Facebook JavaScript SDK
Facebook Developers Website
Facebook App
JavaScript SDK
Graph API
Essential Knowledge
Facebook JavaScript SDK
Application Programming Interface
Software Development Kit
Integrated Development Environment
API v.s. SDK v.s. IDE
Letā€™s ļ¬gure out what these abbreviations areā€¦
Many tools are included in SDK. Different platform, different SDk.
We need Facebook JavaScript SDK to develop a web Facebook App.
A library of functions and methods.
You donā€™t need to know how it works, but you have to know how to call them.
Usually includes code editor, debugger, compiler.
Facebook JavaScript SDK
API v.s. SDK v.s. IDE
API SDK IDE
In some cases..
Facebook JavaScript SDK
Whatā€™s the difference between ā€œWebsiteā€ and
ā€œWeb Appā€?
Whatā€™s API, SDK, and IDE?
Find a partner and try to explain to him/her.
Fun time
Facebook JavaScript SDK
Authentication
Load the products of Facebook
Use the functions of Facebook API
JavaScript SDK
What can Facebook SDK do for you?
Get permission to access to API. Itā€™s the essential part to rock up your App.
Just like using ā€œBootstrapā€, thereā€™re several plugins you could load into your App.
Ready-made functions are available, just call them.
Facebook JavaScript SDK
Access Token
The Key of Authentication.
Your App requests
access and permissions
via SDK and login dialog
Your App receives
the access token
from Facebook
User Authenticates
through typing
username and password
SDK gets authorized,
your app can access
to Facebook API
Letā€™s roll out!
Facebook JavaScript SDK
Facebook Login
Sharing
Social Plugins
Products
What you can do with Facebook SDK.
Facebook JavaScript SDK
Like Button
Share Button
Send Button
Follow Button
Social Plugins
There are some components Facebook had build for you. Just take it.
Comment
Embedded Video
Embedded Posts
Page Plugin
Facebook JavaScript SDK
Facebook Developers Website
Facebook App
JavaScript SDK
Graph API
Essential Knowledge
Facebook JavaScript SDK
Nodes
Edges
Fields
Graph API
The primary way for apps to read and write to the Facebook social graph.
Every ā€œobjectā€ in Facebook is a node, such as user, group, page, and photo.
Connection or relationship of ā€œobjectā€, such as Userā€™s friend, Pageā€™s photo.
Properties of ā€œobjectā€, such as name, birthday, work, gender of a person.
Facebook JavaScript SDK
ā€œWhat a beautiful
day!ā€
ā€œWTH is
FB JS SDK!?ā€
ā€œI wanna drop
the course!ā€
Friends
Posts
Name Work
Birthday
Music
Photos
Facebook JavaScript SDK
What are the three components of Graph API?
Whatā€™s the basic concepts of Graph API?
Find a partner and try to explain what is
Graph API.
Fun Time
Facebook JavaScript SDK
Technical Details
Part 2 of 3
Facebook JavaScript SDK
Download JS SDK
Login
Graph API
Sharing
Social Plugins
Technical Details
Facebook JavaScript SDK
No standalone ļ¬le need to be installed
Include the snippet of code in your App
Insert it directly after the opening <body>
Remember : This is the ļ¬rst step of everything!
Download JavaScript SDK
Facebook JavaScript SDK
Download JavaScript SDK
Self called function
fbAsyncInit
is called.
Donā€™t forget to
change the App ID.
Facebook JavaScript SDK
https://developers.facebook.com/docs/javascript/quickstart/v2.5
1.Docs
2.Web SDKs/ JavaScript SDK/ Quickstart
Facebook JavaScript SDK
FB.Event.subscribe( event, callback);
FB.getLoginStatus( callback);
In JavaScript SDKā€¦
Facebook JavaScript SDK
Callback Function
function jobcallback
argument
Data
Facebook JavaScript SDK
Download JS SDK
Login
Graph API
Sharing
Social Plugins
Technical Details
Facebook JavaScript SDK
1.Use the login button
2.Call the login function
Login
Thereā€™re two ways to login.
Facebook JavaScript SDK
Just like using Bootstrap, assign a speciļ¬c class
1.Login Button
Facebook JavaScript SDK
Several attributes of the login button are
available in the documents.
1.Login Button
Facebook JavaScript SDK
https://developers.facebook.com/docs/facebook-login/web/login-
button
1.Docs
2.Facebook Login
3.Web/ Login Button
Facebook JavaScript SDK
What are the two ways to login FB?
Fun time
Facebook JavaScript SDK
Call the function ā€œFB.login()ā€, for instance :
2.Login Function
Facebook JavaScript SDK
FB.login(callback)
2.Login Function
Facebook JavaScript SDK
https://developers.facebook.com/docs/facebook-login/web
1.Docs
2.Facebook Login
3.Web
4.Invoking the login dialog
with the Javascript SDK
Facebook JavaScript SDK
Download JS SDK
Login
Graph API
Sharing
Social Plugins
Technical Details
Facebook JavaScript SDK
FB.api(graph_path, callback)
Graph API
Facebook JavaScript SDK
FB.api(graph_path, callback)
Graph API
Facebook JavaScript SDK
FB.api(graph_path, callback)
Graph API
Facebook JavaScript SDK
https://developers.facebook.com/docs/graph-api/using-graph-api/v2.5
2.APIs and SDKs
3.Using the Graph API
1.Docs
Facebook JavaScript SDK
What is callback function?
Fun time
Facebook JavaScript SDK
Download JS SDK
Login
Graph API
Sharing
Social Plugins
Technical Details
Facebook JavaScript SDK
FB.ui(parameters, callback)
Sharing
Facebook JavaScript SDK
https://developers.facebook.com/docs/sharing/reference/share-
dialog
1.Docs2.Sharing
3.Web
4.Share Dialog
Facebook JavaScript SDK
Download JS SDK
Login
Graph API
Sharing
Social Plugins
Technical Details
Facebook JavaScript SDK
Like button
Social Plugin
Facebook JavaScript SDK
https://developers.facebook.com/docs/plugins/like-
button
1.Docs
2.Social Plugin
4.Get Code
3.like button
Facebook JavaScript SDK
Implementation
Part 3 of 3
Facebook JavaScript SDK
Checkpoint 1: Setup
Checkpoint 2: Login
Checkpoint 3: Fetch proļ¬le picture and name
Checkpoint 4: Sharing and Comment
Implementation
Facebook JavaScript SDK
Create a new App in Facebook Dev.
Create a new workspace in Cloud 9.
Assign the domain name to Facebook Dev and
assign the App Id to your app.
Setup
The goal of checkpoint 1 is to..
Facebook JavaScript SDK
Setup
Add a New App
Choose ā€œMy Appsā€ and ā€œAdd a New appā€.
https://developers.facebook.com/
Facebook JavaScript SDK
Setup
Choose ā€œWebsiteā€.
Website
Facebook JavaScript SDK
Setup
Adding a name in the blank (e.g. example).
1.example
2.Create New Facebook App ID
Facebook JavaScript SDK
Setup
Choose a category and click create button.
3.Create App ID
1.No! Donā€™t touch it.
2.Category
App for Pages
Facebook JavaScript SDK
Setup
Skip the quick start.
Skip Quick Start
Facebook JavaScript SDK
Setup
Go to the setting section.
Go to Settings
Facebook JavaScript SDK
Setup
Wait here. Letā€™s go to Cloud 9.
Donā€™t leave this page and
open a new tab to Cloud 9.
Facebook JavaScript SDK
Setup
In cloud 9, create a new Workspace.
Facebook JavaScript SDK
Setup
Add a workspace name and choose ā€œHTML5ā€.
1.my-ļ¬rst-app
2.HTML5
3.create workspace
Facebook JavaScript SDK
Setup
Clone the sample code from Github via git.
git clone https://github.com/tom8u4286/fb-js-sdk-practice.git
Facebook JavaScript SDK
Setup
Youā€™ll see these ļ¬le loaded in your workspace.
Facebook JavaScript SDK
Setup
ā€œindex.htmlā€ will be your coding playground today.
index.html
Facebook JavaScript SDK
Setup
Run the Apache server.
Run/ Run with/ Apache httpd(PHP,HTML)
Facebook JavaScript SDK
Setup
This would be the URL of your App.
Copy this URL Without this dot.
Please be careful!
Facebook JavaScript SDK
Setup
Add a platform in your App settings.
Add Platform
Facebook JavaScript SDK
Setup
Choose ā€œWebsiteā€ for your web app.
Website
Facebook JavaScript SDK
Setup
Your App URL should be put here.
Paste your URL to
ā€œApp Domainsā€ and ā€œSite URLā€
Facebook JavaScript SDK
Save Changes
Because itā€™s very important, it has to be said 3 times..
1.Save Changes
2.Save Changes
3.Save Changes
Facebook JavaScript SDK
1.Docs
3.Web SDKs/ JavaScript SDK/ Quickstart
4.Scroll down
Setup
Download JS SDK, a snippet of code, remember?
2.APIs and SDKs
Facebook JavaScript SDK
Setup
Copy the code. ( command + c )
Copy the snippet of code
Facebook JavaScript SDK
Setup
The ļ¬rst step of everything, remember?
Paste the code
after the opening <body>
Facebook JavaScript SDK
Setup
Beautify your code.
To beautify your code in cloud 9:
command + shift + B (mac)
Ctrl + shift + B (windows)
Facebook JavaScript SDK
Setup
Change the argument in function ā€œfbAsyncInitā€.
Change the appId to
ā€œFacebookAppIdā€
(mind the capital letters)
Facebook JavaScript SDK
Setup
Go to the App dashboard.
Go to the dashboard
Facebook JavaScript SDK
Setup
Copy the App Id and paste in your code.
Copy the App ID
Facebook JavaScript SDK
Setup
Paste the App Id in the App_Id.js ļ¬le.
1.App_Id.js 2.Paste the App ID
Mind the quotation mark!
Facebook JavaScript SDK
Setup
There is nothing to copyļ½ž Code on your own :)
1.index.html
3.In the script tag,
deļ¬ne a function initCheck();
2.Scroll down
Facebook JavaScript SDK
Setup
Then call it right after FB init.
2.In the fbAsyncInit(),
call the function initCheck();
1.Scroll up
Facebook JavaScript SDK
Setup
See if you initialization successful:)
2.In Appache Runner
console
3.LEFT click the URL
1.Save (command + s)
Facebook JavaScript SDK
Setup
Congratulations! Youā€™ve just set up JS SDK.
Facebook JavaScript SDK
Checkpoint 1: Setup
Checkpoint 2: Login
Checkpoint 3: Fetch proļ¬le picture and name
Checkpoint 4: Sharing and Comment
Implementation
Facebook JavaScript SDK
Deļ¬ne a button to trigger login and logout.
Call FB.getLoginStatus() & FB.Event.Subscribe()
to check if a user is login.
Call FB.login() and FB.logout();
In this part, practice to code by your own :)
Login
The goal of checkpoint 2 is to ..
Facebook JavaScript SDK
Login
Weā€™d like to know if the login/out event was ļ¬red.
2.In the script tag,
deļ¬ne a function fbloaded();
Try to code on your own :)
1.Scroll down
Facebook JavaScript SDK
Login
To ensure SDK is loaded, the best way is to call it right after init.
2.Call it after FB.init().
1.Scroll up
Facebook JavaScript SDK
Login
Itā€™s very simple, so try to code by yourself :)
2.Deļ¬ne a login button.
1.Scroll down
Facebook JavaScript SDK
Login
Practice makes perfect :)
2.In the script tag,
deļ¬ne a function loginCheck();
Try to code on your own :)
1.Scroll down
Facebook JavaScript SDK
Login
Deļ¬ne a event listener.
1.In the script,
call the loginCheck()
when the button is clicked.
2.Save (command + s)
Facebook JavaScript SDK
Login
Well done! Youā€™ve just learned how to login!
Reload the page and try to login :)
Facebook JavaScript SDK
Checkpoint 1: Setup
Checkpoint 2: Login
Checkpoint 3: Fetch proļ¬le picture and name
Checkpoint 4: Sharing and Comment
Implementation
Facebook JavaScript SDK
Deļ¬ne a img and h1 tag to display picture
and name.
Call Graph API by FB.api();
Practice to code by your own :)
Fetch proļ¬le picture and name
The goal of checkpoint 3 is to ..
Facebook JavaScript SDK
Fetch picture and name
Logout ļ¬rst.
Logout your App.
Facebook JavaScript SDK
Fetch picture and name
The picture would be loaded to the img tag.
2.Deļ¬ne a img and h1 tag.
1.Scroll up
Facebook JavaScript SDK
Fetch picture and name
Use Graph API to fetch proļ¬le picture and name.
2.In FB.Event.subscribe()
Call FB.api()
Weā€™d like to show the picture
and name when a user login.
1.Scroll down
3.Save (command + s)
Facebook JavaScript SDK
Fetch picture and name
Good job! Very happy to see yourself, right?
Refresh the page
and see what happened :)
Facebook JavaScript SDK
Checkpoint 1: Setup
Checkpoint 2: Login
Checkpoint 3: Fetch proļ¬le picture and name
Checkpoint 4: Sharing and Comment
Implementation
Facebook JavaScript SDK
Deļ¬ne a share button to trigger share event.
Call FB dialog by FB.ui();
Try to code by yourself :)
Sharing and Comment
The goal of checkpoint 4 is to ..
Facebook JavaScript SDK
Sharing and Comment
Logout ļ¬rst.
Logout your App.
Facebook JavaScript SDK
Sharing and Comment
This button would share your app to FB.
Deļ¬ne a share button.
Facebook JavaScript SDK
Sharing and Comment
Using the Facebook sharing dialog.
2.Deļ¬ne a function sharing()
Call the FB.ui();
3.Copy your Appā€™s URL and
paste here.
1.Scroll down
Facebook JavaScript SDK
Sharing and Comment
Click to trigger the sharing function.
Call sharing()
when the button is clicked.
Facebook JavaScript SDK
Sharing and Comment
Embed the Facebook comment.
2.Deļ¬ne a div with a class attribute ā€œfb-commentsā€.
3.Copy your Appā€™s URL and
paste here.
4.Save (command + s)
1.Scroll up
Facebook JavaScript SDK
Sharing and Comment
Nice work! Share something to your FB :)
Remember to refresh the page :)
Facebook JavaScript SDK
Donā€™t give up! Keep going!
You have more potential than you think.
One last thingā€¦
Facebook JavaScript SDK
http://www.slideshare.net/littleq0903/
introduction-to-facebook-javascript-sdk-28815523
https://github.com/littleq0903/fb-js-codelab
LittleQ Koi Leon FlyC API
Denffer Mobile Dictionary
Reference

More Related Content

What's hot

App Indexing: Blurring the Lines Between Your Website and App
App Indexing: Blurring the Lines Between Your Website and AppApp Indexing: Blurring the Lines Between Your Website and App
App Indexing: Blurring the Lines Between Your Website and AppJuan Gomez
Ā 
Firebase App-Indexing - SMX London 2016
Firebase App-Indexing - SMX London 2016Firebase App-Indexing - SMX London 2016
Firebase App-Indexing - SMX London 2016David Iwanow
Ā 
Google App indexing
Google App indexingGoogle App indexing
Google App indexingDaniele Vitali
Ā 
Facebook API in the Real World - Myles Noton - Miniclip
Facebook API in the Real World - Myles Noton - MiniclipFacebook API in the Real World - Myles Noton - Miniclip
Facebook API in the Real World - Myles Noton - MiniclipMyles Noton
Ā 
iOS & Android App Indexing & App Actions
iOS & Android App Indexing & App ActionsiOS & Android App Indexing & App Actions
iOS & Android App Indexing & App ActionsJustin Briggs
Ā 
Leynard quizon work portfolio (2012 to 2014)
Leynard quizon work portfolio (2012 to 2014)Leynard quizon work portfolio (2012 to 2014)
Leynard quizon work portfolio (2012 to 2014)Leynard Quizon
Ā 
Life After Mobilegeddon: App Deep Linking Strategies - Pubcon October 2015
Life After Mobilegeddon: App Deep Linking Strategies - Pubcon October 2015Life After Mobilegeddon: App Deep Linking Strategies - Pubcon October 2015
Life After Mobilegeddon: App Deep Linking Strategies - Pubcon October 2015Suzzicks
Ā 
Why Deep Linking is the Next Big Thing: App Indexing - SMX East 2015
Why Deep Linking is the Next Big Thing: App Indexing - SMX East 2015Why Deep Linking is the Next Big Thing: App Indexing - SMX East 2015
Why Deep Linking is the Next Big Thing: App Indexing - SMX East 2015Suzzicks
Ā 
Facebook Platform
Facebook PlatformFacebook Platform
Facebook PlatformDavid Nattriss
Ā 
Firebase App Indexing - SMX Advanced
Firebase App Indexing - SMX AdvancedFirebase App Indexing - SMX Advanced
Firebase App Indexing - SMX AdvancedDavid Iwanow
Ā 
Christopher Allen's Presentation at eComm 2009
Christopher Allen's Presentation at eComm 2009Christopher Allen's Presentation at eComm 2009
Christopher Allen's Presentation at eComm 2009eCommConf
Ā 
An Introduction to Deep Linking and App Indexing Codelab
An Introduction to Deep Linking and App Indexing CodelabAn Introduction to Deep Linking and App Indexing Codelab
An Introduction to Deep Linking and App Indexing CodelabJarek Wilkiewicz
Ā 
Android Deep Linking
Android Deep Linking  Android Deep Linking
Android Deep Linking Ketan Raval
Ā 
Android - Getting Started With Firebase Auth
Android - Getting Started With Firebase AuthAndroid - Getting Started With Firebase Auth
Android - Getting Started With Firebase AuthBayu Firmawan Paoh
Ā 
UaMobitech - App Links and App Indexing API
UaMobitech - App Links and App Indexing APIUaMobitech - App Links and App Indexing API
UaMobitech - App Links and App Indexing APIMatteo Bonifazi
Ā 
Deep linking slides
Deep linking slidesDeep linking slides
Deep linking slidesPersonagraph
Ā 
Top 11 Front-End Web Development Tools To Consider in 2020
 Top 11 Front-End Web Development Tools To Consider in 2020 Top 11 Front-End Web Development Tools To Consider in 2020
Top 11 Front-End Web Development Tools To Consider in 2020Katy Slemon
Ā 

What's hot (18)

App Indexing: Blurring the Lines Between Your Website and App
App Indexing: Blurring the Lines Between Your Website and AppApp Indexing: Blurring the Lines Between Your Website and App
App Indexing: Blurring the Lines Between Your Website and App
Ā 
Firebase App-Indexing - SMX London 2016
Firebase App-Indexing - SMX London 2016Firebase App-Indexing - SMX London 2016
Firebase App-Indexing - SMX London 2016
Ā 
Google App indexing
Google App indexingGoogle App indexing
Google App indexing
Ā 
Facebook API in the Real World - Myles Noton - Miniclip
Facebook API in the Real World - Myles Noton - MiniclipFacebook API in the Real World - Myles Noton - Miniclip
Facebook API in the Real World - Myles Noton - Miniclip
Ā 
iOS & Android App Indexing & App Actions
iOS & Android App Indexing & App ActionsiOS & Android App Indexing & App Actions
iOS & Android App Indexing & App Actions
Ā 
Leynard quizon work portfolio (2012 to 2014)
Leynard quizon work portfolio (2012 to 2014)Leynard quizon work portfolio (2012 to 2014)
Leynard quizon work portfolio (2012 to 2014)
Ā 
Life After Mobilegeddon: App Deep Linking Strategies - Pubcon October 2015
Life After Mobilegeddon: App Deep Linking Strategies - Pubcon October 2015Life After Mobilegeddon: App Deep Linking Strategies - Pubcon October 2015
Life After Mobilegeddon: App Deep Linking Strategies - Pubcon October 2015
Ā 
Why Deep Linking is the Next Big Thing: App Indexing - SMX East 2015
Why Deep Linking is the Next Big Thing: App Indexing - SMX East 2015Why Deep Linking is the Next Big Thing: App Indexing - SMX East 2015
Why Deep Linking is the Next Big Thing: App Indexing - SMX East 2015
Ā 
Facebook Platform
Facebook PlatformFacebook Platform
Facebook Platform
Ā 
Firebase App Indexing - SMX Advanced
Firebase App Indexing - SMX AdvancedFirebase App Indexing - SMX Advanced
Firebase App Indexing - SMX Advanced
Ā 
Christopher Allen's Presentation at eComm 2009
Christopher Allen's Presentation at eComm 2009Christopher Allen's Presentation at eComm 2009
Christopher Allen's Presentation at eComm 2009
Ā 
An Introduction to Deep Linking and App Indexing Codelab
An Introduction to Deep Linking and App Indexing CodelabAn Introduction to Deep Linking and App Indexing Codelab
An Introduction to Deep Linking and App Indexing Codelab
Ā 
Android Deep Linking
Android Deep Linking  Android Deep Linking
Android Deep Linking
Ā 
Android - Getting Started With Firebase Auth
Android - Getting Started With Firebase AuthAndroid - Getting Started With Firebase Auth
Android - Getting Started With Firebase Auth
Ā 
UaMobitech - App Links and App Indexing API
UaMobitech - App Links and App Indexing APIUaMobitech - App Links and App Indexing API
UaMobitech - App Links and App Indexing API
Ā 
Deep linking slides
Deep linking slidesDeep linking slides
Deep linking slides
Ā 
Deep linking
Deep linkingDeep linking
Deep linking
Ā 
Top 11 Front-End Web Development Tools To Consider in 2020
 Top 11 Front-End Web Development Tools To Consider in 2020 Top 11 Front-End Web Development Tools To Consider in 2020
Top 11 Front-End Web Development Tools To Consider in 2020
Ā 

Viewers also liked

Happy facebook developer
Happy facebook developerHappy facebook developer
Happy facebook developerYu-Wei Chuang
Ā 
Making Facebook Faster
Making Facebook FasterMaking Facebook Faster
Making Facebook Fasterguest1240e7c
Ā 
Facebook App Development
Facebook App DevelopmentFacebook App Development
Facebook App DevelopmentCristiano Betta
Ā 
Facebook Development with Zend Framework
Facebook Development with Zend FrameworkFacebook Development with Zend Framework
Facebook Development with Zend FrameworkBrett Harris
Ā 
Workshop : Facebook JavaScript SDK
Workshop : Facebook JavaScript SDKWorkshop : Facebook JavaScript SDK
Workshop : Facebook JavaScript SDKDimitar Danailov
Ā 
Introduction to Facebook JavaScript & Python SDK
Introduction to Facebook JavaScript & Python SDKIntroduction to Facebook JavaScript & Python SDK
Introduction to Facebook JavaScript & Python SDKColin Su
Ā 
Java OOP Programming language (Part 1) - Introduction to Java
Java OOP Programming language (Part 1) - Introduction to JavaJava OOP Programming language (Part 1) - Introduction to Java
Java OOP Programming language (Part 1) - Introduction to JavaOUM SAOKOSAL
Ā 
Analysis of Fatal Utah Avalanches with Python. From Scraping, Analysis, to In...
Analysis of Fatal Utah Avalanches with Python. From Scraping, Analysis, to In...Analysis of Fatal Utah Avalanches with Python. From Scraping, Analysis, to In...
Analysis of Fatal Utah Avalanches with Python. From Scraping, Analysis, to In...Matt Harrison
Ā 
Meetup Python Nantes - les tests en python
Meetup Python Nantes - les tests en pythonMeetup Python Nantes - les tests en python
Meetup Python Nantes - les tests en pythonArthur Lutz
Ā 
Learning notes of r for python programmer (Temp1)
Learning notes of r for python programmer (Temp1)Learning notes of r for python programmer (Temp1)
Learning notes of r for python programmer (Temp1)Chia-Chi Chang
Ā 
Operator Overloading
Operator Overloading  Operator Overloading
Operator Overloading Sardar Alam
Ā 
PyCon 2013 : Scripting to PyPi to GitHub and More
PyCon 2013 : Scripting to PyPi to GitHub and MorePyCon 2013 : Scripting to PyPi to GitHub and More
PyCon 2013 : Scripting to PyPi to GitHub and MoreMatt Harrison
Ā 
Python for All
Python for All Python for All
Python for All Pragya Goyal
Ā 
Installing Python on Mac
Installing Python on MacInstalling Python on Mac
Installing Python on MacWei-Wen Hsu
Ā 
Lesson1 python an introduction
Lesson1 python an introductionLesson1 python an introduction
Lesson1 python an introductionArulalan T
Ā 
Introduction to python
Introduction to pythonIntroduction to python
Introduction to pythonYi-Fan Chu
Ā 
Python master class part 1
Python master class part 1Python master class part 1
Python master class part 1Chathuranga Bandara
Ā 
Introduction to Python - Running Notes
Introduction to Python - Running NotesIntroduction to Python - Running Notes
Introduction to Python - Running NotesRajKumar Rampelli
Ā 

Viewers also liked (20)

Happy facebook developer
Happy facebook developerHappy facebook developer
Happy facebook developer
Ā 
Making Facebook Faster
Making Facebook FasterMaking Facebook Faster
Making Facebook Faster
Ā 
Facebook App Development
Facebook App DevelopmentFacebook App Development
Facebook App Development
Ā 
Facebook Development with Zend Framework
Facebook Development with Zend FrameworkFacebook Development with Zend Framework
Facebook Development with Zend Framework
Ā 
Workshop : Facebook JavaScript SDK
Workshop : Facebook JavaScript SDKWorkshop : Facebook JavaScript SDK
Workshop : Facebook JavaScript SDK
Ā 
Introduction to Facebook JavaScript & Python SDK
Introduction to Facebook JavaScript & Python SDKIntroduction to Facebook JavaScript & Python SDK
Introduction to Facebook JavaScript & Python SDK
Ā 
Introduction to Advanced Javascript
Introduction to Advanced JavascriptIntroduction to Advanced Javascript
Introduction to Advanced Javascript
Ā 
Java OOP Programming language (Part 1) - Introduction to Java
Java OOP Programming language (Part 1) - Introduction to JavaJava OOP Programming language (Part 1) - Introduction to Java
Java OOP Programming language (Part 1) - Introduction to Java
Ā 
Python - Lecture 1
Python - Lecture 1Python - Lecture 1
Python - Lecture 1
Ā 
Analysis of Fatal Utah Avalanches with Python. From Scraping, Analysis, to In...
Analysis of Fatal Utah Avalanches with Python. From Scraping, Analysis, to In...Analysis of Fatal Utah Avalanches with Python. From Scraping, Analysis, to In...
Analysis of Fatal Utah Avalanches with Python. From Scraping, Analysis, to In...
Ā 
Meetup Python Nantes - les tests en python
Meetup Python Nantes - les tests en pythonMeetup Python Nantes - les tests en python
Meetup Python Nantes - les tests en python
Ā 
Learning notes of r for python programmer (Temp1)
Learning notes of r for python programmer (Temp1)Learning notes of r for python programmer (Temp1)
Learning notes of r for python programmer (Temp1)
Ā 
Operator Overloading
Operator Overloading  Operator Overloading
Operator Overloading
Ā 
PyCon 2013 : Scripting to PyPi to GitHub and More
PyCon 2013 : Scripting to PyPi to GitHub and MorePyCon 2013 : Scripting to PyPi to GitHub and More
PyCon 2013 : Scripting to PyPi to GitHub and More
Ā 
Python for All
Python for All Python for All
Python for All
Ā 
Installing Python on Mac
Installing Python on MacInstalling Python on Mac
Installing Python on Mac
Ā 
Lesson1 python an introduction
Lesson1 python an introductionLesson1 python an introduction
Lesson1 python an introduction
Ā 
Introduction to python
Introduction to pythonIntroduction to python
Introduction to python
Ā 
Python master class part 1
Python master class part 1Python master class part 1
Python master class part 1
Ā 
Introduction to Python - Running Notes
Introduction to Python - Running NotesIntroduction to Python - Running Notes
Introduction to Python - Running Notes
Ā 

Similar to Introduction to facebook java script sdk

Facebook API
Facebook APIFacebook API
Facebook APIsnipermkd
Ā 
Facebook 3rd Party Api
Facebook 3rd Party ApiFacebook 3rd Party Api
Facebook 3rd Party ApiYoss Cohen
Ā 
What's New on the Facebook Platform, July 2011
What's New on the Facebook Platform, July 2011What's New on the Facebook Platform, July 2011
What's New on the Facebook Platform, July 2011Iskandar Najmuddin
Ā 
Creating an Uber Clone - Part XXXIII - Transcript.pdf
Creating an Uber Clone - Part XXXIII - Transcript.pdfCreating an Uber Clone - Part XXXIII - Transcript.pdf
Creating an Uber Clone - Part XXXIII - Transcript.pdfShaiAlmog1
Ā 
Creating a content managed facebook app
Creating a content managed facebook appCreating a content managed facebook app
Creating a content managed facebook appOS-Cubed, Inc.
Ā 
Facebook Connect
Facebook ConnectFacebook Connect
Facebook ConnectPitra Satvika
Ā 
Facebook Connect Integration
Facebook Connect IntegrationFacebook Connect Integration
Facebook Connect Integrationmujahidslideshare
Ā 
Facebook Developer Garage Cyberjaya
Facebook Developer Garage CyberjayaFacebook Developer Garage Cyberjaya
Facebook Developer Garage CyberjayaMehedi Hasan Sumon
Ā 
Connect with Facebook to Rails Application By Nyros Developer
Connect with Facebook to Rails Application By Nyros DeveloperConnect with Facebook to Rails Application By Nyros Developer
Connect with Facebook to Rails Application By Nyros DeveloperNyros Technologies
Ā 
Some Useful Flash API
Some Useful Flash APISome Useful Flash API
Some Useful Flash APITushar Vaghela
Ā 
Titanium Studio [Updated - 18/12/2011]
Titanium Studio [Updated - 18/12/2011]Titanium Studio [Updated - 18/12/2011]
Titanium Studio [Updated - 18/12/2011]Sentinel Solutions Ltd
Ā 
How App Indexation Works
How App Indexation WorksHow App Indexation Works
How App Indexation WorksSerenaPearson2
Ā 
How NOT to Suck at App Distribution - Quick Start Guide - Appsocially's Growt...
How NOT to Suck at App Distribution - Quick Start Guide - Appsocially's Growt...How NOT to Suck at App Distribution - Quick Start Guide - Appsocially's Growt...
How NOT to Suck at App Distribution - Quick Start Guide - Appsocially's Growt...Yusuke Takahashi, PhD
Ā 
M365 global developer bootcamp 2019 Intro to SPFx Version
M365 global developer bootcamp 2019 Intro to SPFx VersionM365 global developer bootcamp 2019 Intro to SPFx Version
M365 global developer bootcamp 2019 Intro to SPFx VersionThomas Daly
Ā 
App in android Computer Science homework help.docx
App in android Computer Science homework help.docxApp in android Computer Science homework help.docx
App in android Computer Science homework help.docxstirlingvwriters
Ā 
App in android Computer Science homework help.docx
App in android Computer Science homework help.docxApp in android Computer Science homework help.docx
App in android Computer Science homework help.docxbkbk37
Ā 
harePoint Framework Webinar Series: Consume Graph APIs in SharePoint Framework
harePoint Framework Webinar Series: Consume Graph APIs in SharePoint FrameworkharePoint Framework Webinar Series: Consume Graph APIs in SharePoint Framework
harePoint Framework Webinar Series: Consume Graph APIs in SharePoint FrameworkJenkins NS
Ā 

Similar to Introduction to facebook java script sdk (20)

Facebook API
Facebook APIFacebook API
Facebook API
Ā 
Facebook 3rd Party Api
Facebook 3rd Party ApiFacebook 3rd Party Api
Facebook 3rd Party Api
Ā 
What's New on the Facebook Platform, July 2011
What's New on the Facebook Platform, July 2011What's New on the Facebook Platform, July 2011
What's New on the Facebook Platform, July 2011
Ā 
Creating an Uber Clone - Part XXXIII - Transcript.pdf
Creating an Uber Clone - Part XXXIII - Transcript.pdfCreating an Uber Clone - Part XXXIII - Transcript.pdf
Creating an Uber Clone - Part XXXIII - Transcript.pdf
Ā 
Creating a content managed facebook app
Creating a content managed facebook appCreating a content managed facebook app
Creating a content managed facebook app
Ā 
Developing Facebook Application
Developing Facebook ApplicationDeveloping Facebook Application
Developing Facebook Application
Ā 
Facebook Connect
Facebook ConnectFacebook Connect
Facebook Connect
Ā 
Facebook Connect Integration
Facebook Connect IntegrationFacebook Connect Integration
Facebook Connect Integration
Ā 
Facebook Developer Garage Cyberjaya
Facebook Developer Garage CyberjayaFacebook Developer Garage Cyberjaya
Facebook Developer Garage Cyberjaya
Ā 
Connect with Facebook to Rails Application By Nyros Developer
Connect with Facebook to Rails Application By Nyros DeveloperConnect with Facebook to Rails Application By Nyros Developer
Connect with Facebook to Rails Application By Nyros Developer
Ā 
Some Useful Flash API
Some Useful Flash APISome Useful Flash API
Some Useful Flash API
Ā 
Titanium Studio [Updated - 18/12/2011]
Titanium Studio [Updated - 18/12/2011]Titanium Studio [Updated - 18/12/2011]
Titanium Studio [Updated - 18/12/2011]
Ā 
How App Indexation Works
How App Indexation WorksHow App Indexation Works
How App Indexation Works
Ā 
Facebook Coin
Facebook CoinFacebook Coin
Facebook Coin
Ā 
How NOT to Suck at App Distribution - Quick Start Guide - Appsocially's Growt...
How NOT to Suck at App Distribution - Quick Start Guide - Appsocially's Growt...How NOT to Suck at App Distribution - Quick Start Guide - Appsocially's Growt...
How NOT to Suck at App Distribution - Quick Start Guide - Appsocially's Growt...
Ā 
M365 global developer bootcamp 2019 Intro to SPFx Version
M365 global developer bootcamp 2019 Intro to SPFx VersionM365 global developer bootcamp 2019 Intro to SPFx Version
M365 global developer bootcamp 2019 Intro to SPFx Version
Ā 
App in android Computer Science homework help.docx
App in android Computer Science homework help.docxApp in android Computer Science homework help.docx
App in android Computer Science homework help.docx
Ā 
App in android Computer Science homework help.docx
App in android Computer Science homework help.docxApp in android Computer Science homework help.docx
App in android Computer Science homework help.docx
Ā 
harePoint Framework Webinar Series: Consume Graph APIs in SharePoint Framework
harePoint Framework Webinar Series: Consume Graph APIs in SharePoint FrameworkharePoint Framework Webinar Series: Consume Graph APIs in SharePoint Framework
harePoint Framework Webinar Series: Consume Graph APIs in SharePoint Framework
Ā 
Compose Camp - Session2.pdf
Compose Camp - Session2.pdfCompose Camp - Session2.pdf
Compose Camp - Session2.pdf
Ā 

Recently uploaded

O9654467111 Call Girls In Dwarka Women Seeking Men
O9654467111 Call Girls In Dwarka Women Seeking MenO9654467111 Call Girls In Dwarka Women Seeking Men
O9654467111 Call Girls In Dwarka Women Seeking MenSapana Sha
Ā 
Unlock the power of Instagram with SocioCosmos. Start your journey towards so...
Unlock the power of Instagram with SocioCosmos. Start your journey towards so...Unlock the power of Instagram with SocioCosmos. Start your journey towards so...
Unlock the power of Instagram with SocioCosmos. Start your journey towards so...SocioCosmos
Ā 
CASH PAYMENT ON GIRL HAND TO HAND HOUSEWIFE
CASH PAYMENT ON GIRL HAND TO HAND HOUSEWIFECASH PAYMENT ON GIRL HAND TO HAND HOUSEWIFE
CASH PAYMENT ON GIRL HAND TO HAND HOUSEWIFECall girl Jaipur
Ā 
Website research Powerpoint for Bauer magazine
Website research Powerpoint for Bauer magazineWebsite research Powerpoint for Bauer magazine
Website research Powerpoint for Bauer magazinesamuelcoulson30
Ā 
Your LinkedIn Makeover: Sociocosmos Presence Package
Your LinkedIn Makeover: Sociocosmos Presence PackageYour LinkedIn Makeover: Sociocosmos Presence Package
Your LinkedIn Makeover: Sociocosmos Presence PackageSocioCosmos
Ā 
c Starting with 5000/- for Savita Escorts Service šŸ‘©šŸ½ā€ā¤ļøā€šŸ’‹ā€šŸ‘ØšŸæ 8923113531 ā™¢ Boo...
c Starting with 5000/- for Savita Escorts Service šŸ‘©šŸ½ā€ā¤ļøā€šŸ’‹ā€šŸ‘ØšŸæ 8923113531 ā™¢ Boo...c Starting with 5000/- for Savita Escorts Service šŸ‘©šŸ½ā€ā¤ļøā€šŸ’‹ā€šŸ‘ØšŸæ 8923113531 ā™¢ Boo...
c Starting with 5000/- for Savita Escorts Service šŸ‘©šŸ½ā€ā¤ļøā€šŸ’‹ā€šŸ‘ØšŸæ 8923113531 ā™¢ Boo...gurkirankumar98700
Ā 
Film show post-production powerpoint for site
Film show post-production powerpoint for siteFilm show post-production powerpoint for site
Film show post-production powerpoint for siteAshtonCains
Ā 
SELECTING A SOCIAL MEDIA MARKETING COMPANY
SELECTING A SOCIAL MEDIA MARKETING COMPANYSELECTING A SOCIAL MEDIA MARKETING COMPANY
SELECTING A SOCIAL MEDIA MARKETING COMPANYdizinfo
Ā 
CALL ON āž„8923113531 šŸ”Call Girls Takrohi Lucknow best Female service šŸ‘–
CALL ON āž„8923113531 šŸ”Call Girls Takrohi Lucknow best Female service  šŸ‘–CALL ON āž„8923113531 šŸ”Call Girls Takrohi Lucknow best Female service  šŸ‘–
CALL ON āž„8923113531 šŸ”Call Girls Takrohi Lucknow best Female service šŸ‘–anilsa9823
Ā 
Top Call Girls In Telibagh ( Lucknow ) šŸ” 8923113531 šŸ” Cash Payment
Top Call Girls In Telibagh ( Lucknow  ) šŸ” 8923113531 šŸ”  Cash PaymentTop Call Girls In Telibagh ( Lucknow  ) šŸ” 8923113531 šŸ”  Cash Payment
Top Call Girls In Telibagh ( Lucknow ) šŸ” 8923113531 šŸ” Cash Paymentanilsa9823
Ā 
Night 7k Call Girls Noida Sector 121 Call Me: 8448380779
Night 7k Call Girls Noida Sector 121 Call Me: 8448380779Night 7k Call Girls Noida Sector 121 Call Me: 8448380779
Night 7k Call Girls Noida Sector 121 Call Me: 8448380779Delhi Call girls
Ā 
Interpreting the brief for the media IDY
Interpreting the brief for the media IDYInterpreting the brief for the media IDY
Interpreting the brief for the media IDYgalaxypingy
Ā 
Film show pre-production powerpoint for site
Film show pre-production powerpoint for siteFilm show pre-production powerpoint for site
Film show pre-production powerpoint for siteAshtonCains
Ā 
Top Call Girls In Charbagh ( Lucknow ) šŸ” 8923113531 šŸ” Cash Payment
Top Call Girls In Charbagh ( Lucknow  ) šŸ” 8923113531 šŸ”  Cash PaymentTop Call Girls In Charbagh ( Lucknow  ) šŸ” 8923113531 šŸ”  Cash Payment
Top Call Girls In Charbagh ( Lucknow ) šŸ” 8923113531 šŸ” Cash Paymentanilsa9823
Ā 
9990611130 Find & Book Russian Call Girls In Crossings Republik
9990611130 Find & Book Russian Call Girls In Crossings Republik9990611130 Find & Book Russian Call Girls In Crossings Republik
9990611130 Find & Book Russian Call Girls In Crossings RepublikGenuineGirls
Ā 
Production diary Film the city powerpoint
Production diary Film the city powerpointProduction diary Film the city powerpoint
Production diary Film the city powerpointAshtonCains
Ā 
CALL ON āž„8923113531 šŸ”Call Girls Ashiyana Colony Lucknow best sexual service O...
CALL ON āž„8923113531 šŸ”Call Girls Ashiyana Colony Lucknow best sexual service O...CALL ON āž„8923113531 šŸ”Call Girls Ashiyana Colony Lucknow best sexual service O...
CALL ON āž„8923113531 šŸ”Call Girls Ashiyana Colony Lucknow best sexual service O...anilsa9823
Ā 
This is a Powerpoint about research into the codes and conventions of a film ...
This is a Powerpoint about research into the codes and conventions of a film ...This is a Powerpoint about research into the codes and conventions of a film ...
This is a Powerpoint about research into the codes and conventions of a film ...samuelcoulson30
Ā 

Recently uploaded (20)

O9654467111 Call Girls In Dwarka Women Seeking Men
O9654467111 Call Girls In Dwarka Women Seeking MenO9654467111 Call Girls In Dwarka Women Seeking Men
O9654467111 Call Girls In Dwarka Women Seeking Men
Ā 
Unlock the power of Instagram with SocioCosmos. Start your journey towards so...
Unlock the power of Instagram with SocioCosmos. Start your journey towards so...Unlock the power of Instagram with SocioCosmos. Start your journey towards so...
Unlock the power of Instagram with SocioCosmos. Start your journey towards so...
Ā 
CASH PAYMENT ON GIRL HAND TO HAND HOUSEWIFE
CASH PAYMENT ON GIRL HAND TO HAND HOUSEWIFECASH PAYMENT ON GIRL HAND TO HAND HOUSEWIFE
CASH PAYMENT ON GIRL HAND TO HAND HOUSEWIFE
Ā 
Website research Powerpoint for Bauer magazine
Website research Powerpoint for Bauer magazineWebsite research Powerpoint for Bauer magazine
Website research Powerpoint for Bauer magazine
Ā 
Your LinkedIn Makeover: Sociocosmos Presence Package
Your LinkedIn Makeover: Sociocosmos Presence PackageYour LinkedIn Makeover: Sociocosmos Presence Package
Your LinkedIn Makeover: Sociocosmos Presence Package
Ā 
c Starting with 5000/- for Savita Escorts Service šŸ‘©šŸ½ā€ā¤ļøā€šŸ’‹ā€šŸ‘ØšŸæ 8923113531 ā™¢ Boo...
c Starting with 5000/- for Savita Escorts Service šŸ‘©šŸ½ā€ā¤ļøā€šŸ’‹ā€šŸ‘ØšŸæ 8923113531 ā™¢ Boo...c Starting with 5000/- for Savita Escorts Service šŸ‘©šŸ½ā€ā¤ļøā€šŸ’‹ā€šŸ‘ØšŸæ 8923113531 ā™¢ Boo...
c Starting with 5000/- for Savita Escorts Service šŸ‘©šŸ½ā€ā¤ļøā€šŸ’‹ā€šŸ‘ØšŸæ 8923113531 ā™¢ Boo...
Ā 
Film show post-production powerpoint for site
Film show post-production powerpoint for siteFilm show post-production powerpoint for site
Film show post-production powerpoint for site
Ā 
SELECTING A SOCIAL MEDIA MARKETING COMPANY
SELECTING A SOCIAL MEDIA MARKETING COMPANYSELECTING A SOCIAL MEDIA MARKETING COMPANY
SELECTING A SOCIAL MEDIA MARKETING COMPANY
Ā 
CALL ON āž„8923113531 šŸ”Call Girls Takrohi Lucknow best Female service šŸ‘–
CALL ON āž„8923113531 šŸ”Call Girls Takrohi Lucknow best Female service  šŸ‘–CALL ON āž„8923113531 šŸ”Call Girls Takrohi Lucknow best Female service  šŸ‘–
CALL ON āž„8923113531 šŸ”Call Girls Takrohi Lucknow best Female service šŸ‘–
Ā 
Top Call Girls In Telibagh ( Lucknow ) šŸ” 8923113531 šŸ” Cash Payment
Top Call Girls In Telibagh ( Lucknow  ) šŸ” 8923113531 šŸ”  Cash PaymentTop Call Girls In Telibagh ( Lucknow  ) šŸ” 8923113531 šŸ”  Cash Payment
Top Call Girls In Telibagh ( Lucknow ) šŸ” 8923113531 šŸ” Cash Payment
Ā 
Night 7k Call Girls Noida Sector 121 Call Me: 8448380779
Night 7k Call Girls Noida Sector 121 Call Me: 8448380779Night 7k Call Girls Noida Sector 121 Call Me: 8448380779
Night 7k Call Girls Noida Sector 121 Call Me: 8448380779
Ā 
Interpreting the brief for the media IDY
Interpreting the brief for the media IDYInterpreting the brief for the media IDY
Interpreting the brief for the media IDY
Ā 
Delhi 99530 vip 56974 Genuine Escort Service Call Girls in Masudpur
Delhi  99530 vip 56974  Genuine Escort Service Call Girls in MasudpurDelhi  99530 vip 56974  Genuine Escort Service Call Girls in Masudpur
Delhi 99530 vip 56974 Genuine Escort Service Call Girls in Masudpur
Ā 
šŸ”9953056974 šŸ”Call Girls In Mehrauli Escort Service Delhi NCR
šŸ”9953056974 šŸ”Call Girls In Mehrauli  Escort Service Delhi NCRšŸ”9953056974 šŸ”Call Girls In Mehrauli  Escort Service Delhi NCR
šŸ”9953056974 šŸ”Call Girls In Mehrauli Escort Service Delhi NCR
Ā 
Film show pre-production powerpoint for site
Film show pre-production powerpoint for siteFilm show pre-production powerpoint for site
Film show pre-production powerpoint for site
Ā 
Top Call Girls In Charbagh ( Lucknow ) šŸ” 8923113531 šŸ” Cash Payment
Top Call Girls In Charbagh ( Lucknow  ) šŸ” 8923113531 šŸ”  Cash PaymentTop Call Girls In Charbagh ( Lucknow  ) šŸ” 8923113531 šŸ”  Cash Payment
Top Call Girls In Charbagh ( Lucknow ) šŸ” 8923113531 šŸ” Cash Payment
Ā 
9990611130 Find & Book Russian Call Girls In Crossings Republik
9990611130 Find & Book Russian Call Girls In Crossings Republik9990611130 Find & Book Russian Call Girls In Crossings Republik
9990611130 Find & Book Russian Call Girls In Crossings Republik
Ā 
Production diary Film the city powerpoint
Production diary Film the city powerpointProduction diary Film the city powerpoint
Production diary Film the city powerpoint
Ā 
CALL ON āž„8923113531 šŸ”Call Girls Ashiyana Colony Lucknow best sexual service O...
CALL ON āž„8923113531 šŸ”Call Girls Ashiyana Colony Lucknow best sexual service O...CALL ON āž„8923113531 šŸ”Call Girls Ashiyana Colony Lucknow best sexual service O...
CALL ON āž„8923113531 šŸ”Call Girls Ashiyana Colony Lucknow best sexual service O...
Ā 
This is a Powerpoint about research into the codes and conventions of a film ...
This is a Powerpoint about research into the codes and conventions of a film ...This is a Powerpoint about research into the codes and conventions of a film ...
This is a Powerpoint about research into the codes and conventions of a film ...
Ā 

Introduction to facebook java script sdk