SlideShare a Scribd company logo
API
Introduction to Facebook Javascript API
Social Network and Applications, 2011
LittleQ, The Department of Computer Science, NCCU




                                                    f   Introduction to
                                                        Facebook JS API
Requirement

• HTML
• Basic Javascript
• Graph API
• Optional: AJAX, jQuery, CSS...

                                   f   Introduction to
                                       Facebook JS API
Javascript SDK
• Let you access all features of the Graph
  API or dialogs via Javascript
• Authentication
• Rendering the XFBML versions of
  Social Plugins
• Most functions in the FB Javascript
  SDK require an app id


                                  f     Introduction to
                                        Facebook JS API
Load the Script
• You must specify a <div> element with
  id “fb-root” in your web pages
           <div	
  id=”fb-­‐root”></div>

• The location of the script
 http://connect.facebook.net/	
  	
  	
  	
  	
  /all.js
                             zh_TW
                             en_US




                                                 f   Introduction to
                                                     Facebook JS API
Initialization
    FB.init({
    	
  	
  	
  	
  appId	
  	
  :	
  'YOUR	
  APP	
  ID',
    	
  	
  	
  	
  status	
  :	
  true,	
  //	
  check	
  login	
  status
    	
  	
  	
  	
  cookie	
  :	
  true,	
  //	
  enable	
  cookies
    	
  	
  	
  	
  xfbml	
  	
  :	
  true	
  	
  //	
  parse	
  XFBML
    	
  	
  });




• Do this after the “fb-root” div element
  has been built


                                                                             f   Introduction to
                                                                                 Facebook JS API
Components

• Core Methods
• Event Handling
• XFBML Methods
• Data Access Utilities
• Canvas Methods

                          f   Introduction to
                              Facebook JS API
Core Methods
•   FB.api(): Access the Graph API

•   FB.getLoginStatus()

•   FB.getSession()

•   FB.init(): Method of initialization

•   FB.login(): Login method

•   FB.logout(): Logout method

•   FB.ui(): Method to call dialogs


                                          f   Introduction to
                                              Facebook JS API
FB.api()
• make a API call to the Graph API
• depending on the connect status and
  the permissions
                                 Call if success.
     function	
  SuccessCall(res){
        alert(res.name);
     }


     FB.api('/me',	
  SuccessCall);


                                      f   Introduction to
                                          Facebook JS API
Example - Get Profile
          FB.api(“/me”	
  ,	
  function(response){
              console.log(response.data);
          }


response.data	
  =>	
  {
     email:	
  "littleq0903@gmail.com",
     first_name:	
  "Colin",
     gender:	
  "male",
     id:	
  "1681390745",
     last_name:	
  "Su",
     link:	
  "https://www.facebook.com/littleq0903",
     locale:	
  "en_US",
     name:	
  "Colin	
  Su",
     timezone:	
  8,
     updated_time:	
  "2011-­‐12-­‐16T09:43:06+0000",
     username:	
  "littleq0903",
     verified:	
  true



                                                        f
}
                                                            Introduction to
                                                            Facebook JS API
Example - Get Friends
       FB.api(“/me/friends”	
  ,	
  function(response){
           console.log(response.data);
       }



        response.data	
  =>	
  [
          {	
  id:	
  4	
  ,	
  name:	
  “Mark	
  Zurgberg”},
          {	
  id:	
  123	
  ,	
  name:	
  “Spiderman”	
  },
          {	
  id:	
  49973	
  ,	
  name:	
  “Steve	
  Jobs”	
  },
          {	
  id:	
  55688	
  ,	
  name:	
  “Taiwan	
  Taxi”	
  },
          ...
        ]



response will be an array with your friends data


                                                                      f   Introduction to
                                                                          Facebook JS API
Example - Get Posts
 FB.api(“/me/feed”	
  ,	
  {	
  limit:	
  10	
  }	
  ,
    function(response){
      console.log(response.data);
    }
 );




Check the response.data by yourself!




                                                         f   Introduction to
                                                             Facebook JS API
Example - Send Post
FB.api(“/me/feed”	
  ,	
  
    “post”	
  ,	
  
    {	
  message:	
  “Hello	
  World”	
  }	
  ,
    function	
  (response)	
  {	
  
           if(!response	
  ||	
  response.error)	
  {
                  alert(“error”);
           }	
  else	
  {
                  //success,	
  and	
  then	
  refresh	
  feed
           }
    }
);




                                                                 f   Introduction to
                                                                     Facebook JS API
FB.ui()
FB.ui(
	
  	
  	
  {
	
  	
  	
  	
  	
  method:	
  'feed',
	
  	
  	
  	
  	
  name:	
  'Facebook	
  Dialogs',
	
  	
  	
  	
  	
  link:	
  'https://developers.facebook.com/docs/reference/dialogs/',
	
  	
  	
  	
  	
  picture:	
  'http://fbrell.com/f8.jpg',
	
  	
  	
  	
  	
  caption:	
  'Reference	
  Documentation',
	
  	
  	
  	
  	
  description:	
  'Dialogs	
  provide	
  a	
  simple,	
  consistent	
  interface	
  for	
  
applications	
  to	
  interface	
  with	
  users.',
	
  	
  	
  	
  	
  message:	
  'Facebook	
  Dialogs	
  are	
  easy!'
	
  	
  	
  }
	
  );



        • Triggering iframe dialogs or popups with
             Facebook

                                                                                        f     Introduction to
                                                                                              Facebook JS API
More Topics

• Event Handling
• XFBML
• FQL
• Other SDKs for Facebook Graph API

                               f   Introduction to
                                   Facebook JS API
Tools

• Javascript Console
• Debug version of Facebook JS SDK
• Test users
• URL Linter

                              f   Introduction to
                                  Facebook JS API
Examples

• js_new_ex.html - template file
• js_new_ex1.html - Get Friend List
• js_new_ex2.html - Custom Feed
• js_new_ex3.html - Using Dialog
• Download URL: http://goo.gl/3Fwml

                                f   Introduction to
                                    Facebook JS API
Temporary HTTP Server

 • python	
  -­‐m	
  SimpleHTTPServer	
  5000

 • http://127.0.0.1:5000/
 • Facebook app allow only one domain
   access at a time




                                      f   Introduction to
                                          Facebook JS API
Resources
[1] Facebook Developers -
developers.facebook.com/docs/reference/
javascript/
[2] jQuery - jquery.com
[3] Javascript tutorial - www.study-area.org/coobila/
category_Javascript_u6559_u5B78.html
[4] Google - www.google.com

                                         f   Introduction to
                                             Facebook JS API
Q&A Time
Thanks for your listening



                            f   Introduction to
                                Facebook JS API

More Related Content

What's hot (20)

PPT
Facebook api
snipermkd
 
PPTX
Download PowerPoint Project on social programming for engineering students
SkyingBlogger
 
PPT
Facebook Connect
Pitra Satvika
 
PPT
Facebook Connect Integration
mujahidslideshare
 
PDF
Facebook Open Graph Tech Requirements
Affinitive
 
PDF
[Code Camp] Ứng dụng Facebook API vào phát triển website
Sieu Web
 
PDF
Leveraging Rails to Build Facebook Apps
David Keener
 
PDF
Interactive with-facebook
Tien Nguyen
 
KEY
OAuth Introduction
h_marvin
 
PPTX
The Flash Facebook Cookbook - FlashMidlands
James Ford
 
PDF
Php day 2011 - Interactive-with-facebook
Quang Anh Le
 
PPTX
Facebook Developer Garage Cyberjaya
Mehedi Hasan Sumon
 
PPT
Introduction to Social Networking Sites and websites
Shruti Arya
 
PPT
Hi5 Open Social
Julia Foxworthy
 
PDF
Building Facebook Apps
David Keener
 
PPT
An Introduction To The Use Of Widgets in libraries
Aaron Tay
 
PPT
Access Management Technologies Update by Simon McLeish and John Paschoud
JISC.AM
 
PPT
Facebook Coin
Sathiyamoorthi
 
PPT
Off Page SEO Strategies
Shimanto Arif
 
PPT
Web 2.0: What Can It Offer The Research Community?
lisbk
 
Facebook api
snipermkd
 
Download PowerPoint Project on social programming for engineering students
SkyingBlogger
 
Facebook Connect
Pitra Satvika
 
Facebook Connect Integration
mujahidslideshare
 
Facebook Open Graph Tech Requirements
Affinitive
 
[Code Camp] Ứng dụng Facebook API vào phát triển website
Sieu Web
 
Leveraging Rails to Build Facebook Apps
David Keener
 
Interactive with-facebook
Tien Nguyen
 
OAuth Introduction
h_marvin
 
The Flash Facebook Cookbook - FlashMidlands
James Ford
 
Php day 2011 - Interactive-with-facebook
Quang Anh Le
 
Facebook Developer Garage Cyberjaya
Mehedi Hasan Sumon
 
Introduction to Social Networking Sites and websites
Shruti Arya
 
Hi5 Open Social
Julia Foxworthy
 
Building Facebook Apps
David Keener
 
An Introduction To The Use Of Widgets in libraries
Aaron Tay
 
Access Management Technologies Update by Simon McLeish and John Paschoud
JISC.AM
 
Facebook Coin
Sathiyamoorthi
 
Off Page SEO Strategies
Shimanto Arif
 
Web 2.0: What Can It Offer The Research Community?
lisbk
 

Viewers also liked (11)

PDF
Open tok Android sdk - Droidcon
Droidcon Spain
 
PPT
Happy facebook developer
Yu-Wei Chuang
 
PDF
Making Facebook Faster
guest1240e7c
 
PDF
Facebook Platform for Developers
Lidan Hifi
 
PDF
Facebook App Development
Cristiano Betta
 
PPT
Facebook Development with Zend Framework
Brett Harris
 
PPTX
Getting started with Facebook OpenGraph API
Lynn Langit
 
PDF
Facebook Open Graph API and How To Use It
Aayush Shrestha
 
PPT
Facebook Open Graph API
Colin Smillie
 
PDF
Introduction to Google Compute Engine
Colin Su
 
PPT
Facebook + Ruby
Alex Koppel
 
Open tok Android sdk - Droidcon
Droidcon Spain
 
Happy facebook developer
Yu-Wei Chuang
 
Making Facebook Faster
guest1240e7c
 
Facebook Platform for Developers
Lidan Hifi
 
Facebook App Development
Cristiano Betta
 
Facebook Development with Zend Framework
Brett Harris
 
Getting started with Facebook OpenGraph API
Lynn Langit
 
Facebook Open Graph API and How To Use It
Aayush Shrestha
 
Facebook Open Graph API
Colin Smillie
 
Introduction to Google Compute Engine
Colin Su
 
Facebook + Ruby
Alex Koppel
 
Ad

Similar to Introduction to Facebook Javascript SDK (NEW) (20)

PPTX
Alphageeks meetup - facebook api
Alphageeks
 
PDF
Charlie Cheever Facebook Developer Garage Uganda
Leila Janah
 
KEY
페이스북 소셜 앱 개발 가이드 2011
Sukjoon Kim
 
PDF
Developing Facebook Application - Nagpur PHP Meetup
Abhishek Deshpande
 
PDF
Build social apps for Facebook
Mohammad Emran Hasan
 
PDF
Matías Paterlini: Desarrollo de aplicaciones en Facebook
Grupo PHP Argentina
 
PPT
Facebook Development in 5 Minutes
Jesse Stay
 
KEY
Facebook Development for Beginners
Jesse Stay
 
ODP
Facebook Platform
David Nattriss
 
PPT
Facebook plateform architecture presentation
Inam Soomro
 
PPT
Facebook API
snipermkd
 
PDF
Peepcode facebook-2-rails on facebook
sushilprajapati
 
PPTX
Developers Tools: An overview of Facebook Development
Clark Davidson
 
PDF
funP 麻吉 開發者俱樂部十月份聚會
Nathan Chiu
 
PDF
Facebook Connect Tutorial
Prateek Dayal
 
PDF
Developing Facebook Application
Kanda Runapongsa Saikaew
 
PPT
Facebook Technology Stack
Husain Ali
 
PDF
Building an interactive timeline from facebook photos
Rakesh Rajan
 
PDF
Facebook APIs
Andrew Sorensen
 
Alphageeks meetup - facebook api
Alphageeks
 
Charlie Cheever Facebook Developer Garage Uganda
Leila Janah
 
페이스북 소셜 앱 개발 가이드 2011
Sukjoon Kim
 
Developing Facebook Application - Nagpur PHP Meetup
Abhishek Deshpande
 
Build social apps for Facebook
Mohammad Emran Hasan
 
Matías Paterlini: Desarrollo de aplicaciones en Facebook
Grupo PHP Argentina
 
Facebook Development in 5 Minutes
Jesse Stay
 
Facebook Development for Beginners
Jesse Stay
 
Facebook Platform
David Nattriss
 
Facebook plateform architecture presentation
Inam Soomro
 
Facebook API
snipermkd
 
Peepcode facebook-2-rails on facebook
sushilprajapati
 
Developers Tools: An overview of Facebook Development
Clark Davidson
 
funP 麻吉 開發者俱樂部十月份聚會
Nathan Chiu
 
Facebook Connect Tutorial
Prateek Dayal
 
Developing Facebook Application
Kanda Runapongsa Saikaew
 
Facebook Technology Stack
Husain Ali
 
Building an interactive timeline from facebook photos
Rakesh Rajan
 
Facebook APIs
Andrew Sorensen
 
Ad

More from Colin Su (20)

PDF
Introduction to Google Cloud Endpoints: Speed Up Your API Development
Colin Su
 
PDF
Functional programming in Python
Colin Su
 
PDF
Web2py Code Lab
Colin Su
 
PDF
A Tour of Google Cloud Platform
Colin Su
 
PDF
Introduction to MapReduce & hadoop
Colin Su
 
PDF
Introduction to Google App Engine
Colin Su
 
PDF
Django Deployer
Colin Su
 
PDF
Introduction to Google - the most natural way to learn English (English Speech)
Colin Su
 
PDF
How to Speak Charms Like a Wizard
Colin Su
 
PDF
房地產報告
Colin Su
 
PDF
Introduction to Git
Colin Su
 
PDF
Introduction to Facebook Python API
Colin Su
 
PDF
Web Programming - 1st TA Session
Colin Su
 
PDF
Nested List Comprehension and Binary Search
Colin Su
 
PDF
Python-List comprehension
Colin Su
 
PDF
Python-FileIO
Colin Su
 
KEY
Python Dictionary
Colin Su
 
PDF
Vim editor
Colin Su
 
PDF
VPython introduction
Colin Su
 
PDF
Linux-Permission
Colin Su
 
Introduction to Google Cloud Endpoints: Speed Up Your API Development
Colin Su
 
Functional programming in Python
Colin Su
 
Web2py Code Lab
Colin Su
 
A Tour of Google Cloud Platform
Colin Su
 
Introduction to MapReduce & hadoop
Colin Su
 
Introduction to Google App Engine
Colin Su
 
Django Deployer
Colin Su
 
Introduction to Google - the most natural way to learn English (English Speech)
Colin Su
 
How to Speak Charms Like a Wizard
Colin Su
 
房地產報告
Colin Su
 
Introduction to Git
Colin Su
 
Introduction to Facebook Python API
Colin Su
 
Web Programming - 1st TA Session
Colin Su
 
Nested List Comprehension and Binary Search
Colin Su
 
Python-List comprehension
Colin Su
 
Python-FileIO
Colin Su
 
Python Dictionary
Colin Su
 
Vim editor
Colin Su
 
VPython introduction
Colin Su
 
Linux-Permission
Colin Su
 

Recently uploaded (20)

PDF
Book industry state of the nation 2025 - Tech Forum 2025
BookNet Canada
 
PPTX
Seamless Tech Experiences Showcasing Cross-Platform App Design.pptx
presentifyai
 
PPTX
Designing_the_Future_AI_Driven_Product_Experiences_Across_Devices.pptx
presentifyai
 
PPT
Ericsson LTE presentation SEMINAR 2010.ppt
npat3
 
PDF
Bitcoin for Millennials podcast with Bram, Power Laws of Bitcoin
Stephen Perrenod
 
PPTX
From Sci-Fi to Reality: Exploring AI Evolution
Svetlana Meissner
 
PPTX
Future Tech Innovations 2025 – A TechLists Insight
TechLists
 
PPTX
AI Penetration Testing Essentials: A Cybersecurity Guide for 2025
defencerabbit Team
 
PDF
Kit-Works Team Study_20250627_한달만에만든사내서비스키링(양다윗).pdf
Wonjun Hwang
 
PPTX
Agentforce World Tour Toronto '25 - MCP with MuleSoft
Alexandra N. Martinez
 
PDF
POV_ Why Enterprises Need to Find Value in ZERO.pdf
darshakparmar
 
DOCX
Cryptography Quiz: test your knowledge of this important security concept.
Rajni Bhardwaj Grover
 
PDF
UiPath DevConnect 2025: Agentic Automation Community User Group Meeting
DianaGray10
 
PDF
What’s my job again? Slides from Mark Simos talk at 2025 Tampa BSides
Mark Simos
 
PPTX
New ThousandEyes Product Innovations: Cisco Live June 2025
ThousandEyes
 
PDF
[Newgen] NewgenONE Marvin Brochure 1.pdf
darshakparmar
 
PDF
NASA A Researcher’s Guide to International Space Station : Physical Sciences ...
Dr. PANKAJ DHUSSA
 
PDF
Transforming Utility Networks: Large-scale Data Migrations with FME
Safe Software
 
PDF
“NPU IP Hardware Shaped Through Software and Use-case Analysis,” a Presentati...
Edge AI and Vision Alliance
 
PDF
The 2025 InfraRed Report - Redpoint Ventures
Razin Mustafiz
 
Book industry state of the nation 2025 - Tech Forum 2025
BookNet Canada
 
Seamless Tech Experiences Showcasing Cross-Platform App Design.pptx
presentifyai
 
Designing_the_Future_AI_Driven_Product_Experiences_Across_Devices.pptx
presentifyai
 
Ericsson LTE presentation SEMINAR 2010.ppt
npat3
 
Bitcoin for Millennials podcast with Bram, Power Laws of Bitcoin
Stephen Perrenod
 
From Sci-Fi to Reality: Exploring AI Evolution
Svetlana Meissner
 
Future Tech Innovations 2025 – A TechLists Insight
TechLists
 
AI Penetration Testing Essentials: A Cybersecurity Guide for 2025
defencerabbit Team
 
Kit-Works Team Study_20250627_한달만에만든사내서비스키링(양다윗).pdf
Wonjun Hwang
 
Agentforce World Tour Toronto '25 - MCP with MuleSoft
Alexandra N. Martinez
 
POV_ Why Enterprises Need to Find Value in ZERO.pdf
darshakparmar
 
Cryptography Quiz: test your knowledge of this important security concept.
Rajni Bhardwaj Grover
 
UiPath DevConnect 2025: Agentic Automation Community User Group Meeting
DianaGray10
 
What’s my job again? Slides from Mark Simos talk at 2025 Tampa BSides
Mark Simos
 
New ThousandEyes Product Innovations: Cisco Live June 2025
ThousandEyes
 
[Newgen] NewgenONE Marvin Brochure 1.pdf
darshakparmar
 
NASA A Researcher’s Guide to International Space Station : Physical Sciences ...
Dr. PANKAJ DHUSSA
 
Transforming Utility Networks: Large-scale Data Migrations with FME
Safe Software
 
“NPU IP Hardware Shaped Through Software and Use-case Analysis,” a Presentati...
Edge AI and Vision Alliance
 
The 2025 InfraRed Report - Redpoint Ventures
Razin Mustafiz
 

Introduction to Facebook Javascript SDK (NEW)

  • 1. API Introduction to Facebook Javascript API Social Network and Applications, 2011 LittleQ, The Department of Computer Science, NCCU f Introduction to Facebook JS API
  • 2. Requirement • HTML • Basic Javascript • Graph API • Optional: AJAX, jQuery, CSS... f Introduction to Facebook JS API
  • 3. Javascript SDK • Let you access all features of the Graph API or dialogs via Javascript • Authentication • Rendering the XFBML versions of Social Plugins • Most functions in the FB Javascript SDK require an app id f Introduction to Facebook JS API
  • 4. Load the Script • You must specify a <div> element with id “fb-root” in your web pages <div  id=”fb-­‐root”></div> • The location of the script http://connect.facebook.net/          /all.js zh_TW en_US f Introduction to Facebook JS API
  • 5. Initialization FB.init({        appId    :  'YOUR  APP  ID',        status  :  true,  //  check  login  status        cookie  :  true,  //  enable  cookies        xfbml    :  true    //  parse  XFBML    }); • Do this after the “fb-root” div element has been built f Introduction to Facebook JS API
  • 6. Components • Core Methods • Event Handling • XFBML Methods • Data Access Utilities • Canvas Methods f Introduction to Facebook JS API
  • 7. Core Methods • FB.api(): Access the Graph API • FB.getLoginStatus() • FB.getSession() • FB.init(): Method of initialization • FB.login(): Login method • FB.logout(): Logout method • FB.ui(): Method to call dialogs f Introduction to Facebook JS API
  • 8. FB.api() • make a API call to the Graph API • depending on the connect status and the permissions Call if success. function  SuccessCall(res){ alert(res.name); } FB.api('/me',  SuccessCall); f Introduction to Facebook JS API
  • 9. Example - Get Profile FB.api(“/me”  ,  function(response){ console.log(response.data); } response.data  =>  { email:  "[email protected]", first_name:  "Colin", gender:  "male", id:  "1681390745", last_name:  "Su", link:  "https://www.facebook.com/littleq0903", locale:  "en_US", name:  "Colin  Su", timezone:  8, updated_time:  "2011-­‐12-­‐16T09:43:06+0000", username:  "littleq0903", verified:  true f } Introduction to Facebook JS API
  • 10. Example - Get Friends FB.api(“/me/friends”  ,  function(response){ console.log(response.data); } response.data  =>  [ {  id:  4  ,  name:  “Mark  Zurgberg”}, {  id:  123  ,  name:  “Spiderman”  }, {  id:  49973  ,  name:  “Steve  Jobs”  }, {  id:  55688  ,  name:  “Taiwan  Taxi”  }, ... ] response will be an array with your friends data f Introduction to Facebook JS API
  • 11. Example - Get Posts FB.api(“/me/feed”  ,  {  limit:  10  }  , function(response){ console.log(response.data); } ); Check the response.data by yourself! f Introduction to Facebook JS API
  • 12. Example - Send Post FB.api(“/me/feed”  ,   “post”  ,   {  message:  “Hello  World”  }  , function  (response)  {   if(!response  ||  response.error)  { alert(“error”); }  else  { //success,  and  then  refresh  feed } } ); f Introduction to Facebook JS API
  • 13. FB.ui() FB.ui(      {          method:  'feed',          name:  'Facebook  Dialogs',          link:  'https://developers.facebook.com/docs/reference/dialogs/',          picture:  'http://fbrell.com/f8.jpg',          caption:  'Reference  Documentation',          description:  'Dialogs  provide  a  simple,  consistent  interface  for   applications  to  interface  with  users.',          message:  'Facebook  Dialogs  are  easy!'      }  ); • Triggering iframe dialogs or popups with Facebook f Introduction to Facebook JS API
  • 14. More Topics • Event Handling • XFBML • FQL • Other SDKs for Facebook Graph API f Introduction to Facebook JS API
  • 15. Tools • Javascript Console • Debug version of Facebook JS SDK • Test users • URL Linter f Introduction to Facebook JS API
  • 16. Examples • js_new_ex.html - template file • js_new_ex1.html - Get Friend List • js_new_ex2.html - Custom Feed • js_new_ex3.html - Using Dialog • Download URL: http://goo.gl/3Fwml f Introduction to Facebook JS API
  • 17. Temporary HTTP Server • python  -­‐m  SimpleHTTPServer  5000 • http://127.0.0.1:5000/ • Facebook app allow only one domain access at a time f Introduction to Facebook JS API
  • 18. Resources [1] Facebook Developers - developers.facebook.com/docs/reference/ javascript/ [2] jQuery - jquery.com [3] Javascript tutorial - www.study-area.org/coobila/ category_Javascript_u6559_u5B78.html [4] Google - www.google.com f Introduction to Facebook JS API
  • 19. Q&A Time Thanks for your listening f Introduction to Facebook JS API