SlideShare a Scribd company logo
ApiFacebook developmentby Wang Tao at Ethos  / 2011-2-17
About me@anytao in twitterA .net geek in China
Facebook & its APIoverviewgraph ApiFQLauthenticationcurrent solutionOther Social Network: Twitter, t.sina
OverviewPluginFBMLFB AppSDKTesting
Restful API
Restful Apihttps://api.facebook.com/method/[name]users.hasAppPermissionusers.isAppUserusers.getLoggedInUserBenefitEasy SOAResourceOnly HttpStatelessLight WeightSimpleReadableJson and XMLdeprecatedhttps://api.facebook.com/method/users.getInfo?uids=555020699&fields=name&access_token=…
Graph APISimple, Consistent, and Connected
Objects
Objectuserpagemessagestatus messagephotovideohttp://graph.facebook.com/anytaohttp://graph.facebook.com/platformhttps://graph.facebook.com/{ID}
Simplehttps://graph.facebook.com/{ID}Mehttps://graph.facebook.com/me/friends
Data object as URL!ConsistentAll objects in Facebook can be accessed in the same way:Users: https://graph.facebook.com/btaylor (Bret Taylor)Pages: https://graph.facebook.com/cocacola (Coca-Cola page)Events: https://graph.facebook.com/251906384206 (Facebook Developer Garage Austin)Groups: https://graph.facebook.com/195466193802264 (Facebook Developers group)Applications: https://graph.facebook.com/2439131959 (the Graffiti app)Status messages: https://graph.facebook.com/367501354973 (A status message from Bret)Photos: https://graph.facebook.com/98423808305 (A photo from the Coca-Cola page)Photo albums: https://graph.facebook.com/99394368305 (Coca-Cola's wall photos)Profile pictures: http://graph.facebook.com/anytao/picture (your profile picture)Videos: https://graph.facebook.com/614004947048 (A Facebook tech talk on Tornado)Notes: https://graph.facebook.com/122788341354 (Note announcing Facebook for iPhone 3.0)Checkins: https://graph.facebook.com/414866888308 (Check-in at a pizzeria)
Connecteduser@connectionshome
feed
posts
friends
picture
photos
…Objects+connectionshttp://graph.facebook.com/anytao/picturehttp://graph.facebook.com/me/friends
Json return{   "data": [      {         "id": "555020699_160639637289676",         "message": "I agree with Reg, this makes me really proud to live in Toronto...","picture": "http://external.ak.fbcdn.net/safe_image.php?d=ace00444e7daf6cb40d8605fae85c257&w=130&h=130&url=http%3A%2F%2Fi.ytimg.com%2Fvi%2F-KGLgDQAo5U%2F0.jpg",         "link": "http://www.youtube.com/watch?v=-KGLgDQAo5U&feature=youtube_gdata_player",         "source": "http://www.youtube.com/v/-KGLgDQAo5U&autoplay=1",         "name": "Hoedown Throwdown",         "caption": "www.youtube.com",         "description": "I got off the subway at Bloor and Yonge last night, and this is what I saw; some buskers with a fiddle and a banjo were playing, and these four other guys just started to pop it and lock it, apparently just for the hell of it. It cheered me right up.",         "icon": "http://static.ak.fbcdn.net/rsrc.php/zj/r/v2OnaTyTQZE.gif",         "actions": [            {               "name": "Comment",               "link": "http://www.facebook.com/555020699/posts/160639637289676"            },            {               "name": "Like",               "link": "http://www.facebook.com/555020699/posts/160639637289676"            }],
DemoEvery object in the social graph has a unique ID. You can access the properties of an object by requesting.https://graph.facebook.com/{ID}http://graph.facebook.com/anytaohttp://graph.facebook.com/anytaohttps://graph.facebook.com/anytao/friends?access_token=2227470867|2.0x1QCxus6HCsWaaMArPglg__.3600.1297929600-738694610|aZXed9W0Ank-2mhI73UnwIX3gYIhttps://graph.facebook.com/anytao/friends?access_token=2227470867|2.0x1QCxus6HCsWaaMArPglg__.3600.1297929600-738694610|aZXed9W0Ank-2mhI73UnwIX3gYI
FQL
Key advantagesCommon syntax for all methodsCondense Facebook queriesReduce response size
FQL is an SQL-like syntaxSELECT name FROM user WHERE uid = 4Has AND, OR and NOT keywordsUse basic boolean operatorsSELECT uid2 FROM friend WHERE uid = 4 AND uid2 > (4 + 1000)Enhance queries with basic functionsnow()strlen()
FQL is an SQL-like syntaxsubstr()strpos()Example, SELECT location FROM event WHRERE eid=1234567 AND strpos(name, “facebook”) AND start_time > 10000000
FQL: Advanced QuerySELECT eid FROM event WHERE eid	IN (	SELECT eid FROM event_member WHERE uid = 4) AND location = “beijing”
FQL, not SQLNo JOINNo ORDER BYNo GROUP BYNo LIMITOnly one table in FROMNot allowed: SELECT * FROM user, photo WHERE uid = 4
FQL, not SQLdisplay most recently updated events in BejingSQL: SELECT * FROM event WHERE location = “bejing” AND user = 4 ORDER BY update_time ASCFQL:SELCT update_time, eid, name, location FROM event WHERE eid IN (SLECT eid FROM event_member WHERE uid = 4) AND location = “beijing”
Demohttps://api.facebook.com/method/fql.query?access_token=2227470867|2.9stmGn8B630JCOkK7xICMw__.3600.1297922400-738694610|gdYJgGegkPa71WVFv-HD2XMxi0M&format=json&query=select%20name%20from%20user%20where%20uid=621627426https://api.facebook.com/method/fql.query?access_token=2227470867|2.gouA9cuplsTSEpAOnMBlhA__.3600.1298304000-738694610|allgk00e3d6e6S33DzFi8-kteQ0&format=json&query=select%20name,%20location%20from%20event%20where%20eid%20in%20(select%20eid%20from%20event_member%20where%20uid%20=%20738694610)select name, location from event where eid in (select eid from event_member where uid = 738694610)
Authentication
Facebook Authenticationoauth 2.0http://graph.facebook.com/anytaohttp://graph.facebook.com/anytao/picture<public data>http://graph.facebook.com/anytao/home?access_token=http://graph.facebook.com/anytao/feed?access_token=access_token<privatec data>
What is OAuth?
Actors on Facebook oAuthJacky - UserExplorer - ConsumerFacebook - Service Provider123Example
Retrieve a request token123Request user authorizationExchange request token for an access tokenExample
Facebook Authentication / Server side flowExplorer try to access FBOAuth Dialog(App Authorization)OAuth Dialog(User Authentication)https://www.facebook.com/dialog/oauth?     client_id=YOUR_APP_ID&redirect_uri=YOUR_URL
Facebook Authentication / Server side flowExplorer try to access FBOAuth Dialog(App Authorization)OAuth Dialog(User Authentication)https://www.facebook.com/dialog/oauth?     client_id=YOUR_APP_ID&redirect_uri=YOUR_URL&scope=email,read_stream
Facebook Authentication / Server side flowExplorer try to access FBOAuth Dialog(App Authorization)OAuth Dialog(User Authentication)Cookie not found, show OAuthDialog(facebook layout)
Facebook Authentication / Server side flowExplorer try to access FBOAuth Dialog(App Authorization)OAuth Dialog(User Authentication)Goes to App Authorization directly…
Facebook Authentication / Server side flowExplorer try to access FBOAuth Dialog(App Authorization)Http 302(redirect_urlparam)OAuth Dialog(User Authentication)Don’t allow!http://YOUR_URL?error_reason=user_denied&     error=access_denied&error_description=The+user+denied+your+request.
Facebook Authentication / Server side flowExplorer try to access FBOAuth Dialog(App Authorization)Http 302(redirect_urlparam)OAuth Dialog(User Authentication)Allow! Redirect with Authorization Code paramhttp://YOUR_URL?code=A_CODE_GENERATED_BY_SERVER
Facebook Authentication / Server side flowhttp://mydomain.comOAuth(App authorization)Request: https://graph.facebook.com/oauth/access_tokenhttps://graph.facebook.com/oauth/access_token?     client_id=YOUR_APP_ID&redirect_uri=YOUR_URL&     client_secret=YOUR_APP_SECRET&code=THE_CODE_FROM_ABOVE
Facebook Authentication / Server side flowhttp://mydomain.comHttp 400Failed!{ "error": { "type": "OAuthException", "message": "Error validating verification code." } }
Facebook Authentication / Server side flowhttp://mydomain.comHTTP 302(redirect_url)Successful authenticated!access_tokenin the body of the request
Facebook Authentication / Client side flowHttp requestHTTP 302(redirect_url)Pass URI fragment with access_token

More Related Content

PPTX
Facebook Apps Development 101 (Java)
PPT
Happy facebook developer
PPTX
The Flash Facebook Cookbook - FlashMidlands
PDF
Leveraging Rails to Build Facebook Apps
ODP
Facebook Social Plugins
PDF
Jabber Bot
PPT
Facebook api
PDF
Yahoo for the Masses
Facebook Apps Development 101 (Java)
Happy facebook developer
The Flash Facebook Cookbook - FlashMidlands
Leveraging Rails to Build Facebook Apps
Facebook Social Plugins
Jabber Bot
Facebook api
Yahoo for the Masses

What's hot (9)

PPS
Virtual Tech Days 2010 - Integrating Social Networks with ASP.NET
PPT
What's New on the Facebook Platform, May 2011
PPTX
How to connect social media with open standards
PDF
Captured Moments
DOCX
1111 companies for good career
PPT
DevCon 2010 - Facebook Apps development for ASP.NET devs
PDF
The DiSo Project and the Open Web
PPTX
Hacking location aware hacks HackU IIT Bombay
PDF
Presentation on "XSS Defeating Concept in (secure)SiteHoster" : 'nullcon-2011'
Virtual Tech Days 2010 - Integrating Social Networks with ASP.NET
What's New on the Facebook Platform, May 2011
How to connect social media with open standards
Captured Moments
1111 companies for good career
DevCon 2010 - Facebook Apps development for ASP.NET devs
The DiSo Project and the Open Web
Hacking location aware hacks HackU IIT Bombay
Presentation on "XSS Defeating Concept in (secure)SiteHoster" : 'nullcon-2011'
Ad

Viewers also liked (10)

KEY
Facebook Development for Beginners
PPTX
Intro to Facebook Presentation – Facebook, How to Get Started Safely
DOCX
Social Media Marketing Strategy Case Study – Intel Inc. presence on Facebook,...
PPTX
Facebook business model canvas
PPTX
Facebook Competitive Advantage (social networking)
PPTX
Facebook Case Study + Solutions 2013
PPTX
SWOT and PESTLE analysis of Facebook
PDF
Business Strategy Analysis on Facebook
PDF
Facebook Analysis and Study
PDF
Venture Design Workshop: Business Model Canvas
Facebook Development for Beginners
Intro to Facebook Presentation – Facebook, How to Get Started Safely
Social Media Marketing Strategy Case Study – Intel Inc. presence on Facebook,...
Facebook business model canvas
Facebook Competitive Advantage (social networking)
Facebook Case Study + Solutions 2013
SWOT and PESTLE analysis of Facebook
Business Strategy Analysis on Facebook
Facebook Analysis and Study
Venture Design Workshop: Business Model Canvas
Ad

Similar to Facebook and its development (20)

ODP
Facebook Platform
PPT
Facebook API
PDF
Introduction to Facebook JavaScript & Python SDK
PPT
What's New on the Facebook Platform, July 2011
PDF
Node social
PPT
Facebook + Ruby
PPT
Facebook Connect Integration
PDF
Facebook Platform for Developers
KEY
Facebook open graph Presentation
PPT
Iskandar Najmuddin
PPT
Facebook Development with Zend Framework
PDF
Facebook fql and tweepy
KEY
Graph API - Facebook Developer Garage Taipei
KEY
Graph API - Facebook Developer Garage Taipei
PPT
Mashups & APIs
PDF
Backlinks Examples PR7-10
DOCX
Http xayaguud
ODP
Illuminated Hacks -- Where 2.0 101 Tutorial
PPTX
YQL - HackU IIT Madras 2012
ODP
Pimp My Web Page
Facebook Platform
Facebook API
Introduction to Facebook JavaScript & Python SDK
What's New on the Facebook Platform, July 2011
Node social
Facebook + Ruby
Facebook Connect Integration
Facebook Platform for Developers
Facebook open graph Presentation
Iskandar Najmuddin
Facebook Development with Zend Framework
Facebook fql and tweepy
Graph API - Facebook Developer Garage Taipei
Graph API - Facebook Developer Garage Taipei
Mashups & APIs
Backlinks Examples PR7-10
Http xayaguud
Illuminated Hacks -- Where 2.0 101 Tutorial
YQL - HackU IIT Madras 2012
Pimp My Web Page

More from Tao Wang (20)

PDF
团队高效沟通的秘密
PDF
高效团队的秘密
PDF
Worktile 更好用的企业协作平台
PDF
Hello, Worktile Pro
PDF
Windows Phone 7 in azure
PDF
Anytao 让windows phone应用在云端翱翔
PPTX
13 wp7 working with azure
PPTX
12 wp7 marketing windows phone applications
PPTX
11 wp7 designing applicationsusingexpressionblend
PPTX
10 wp7 local database
PPTX
09 wp7 multitasking
PPTX
08 wp7 push notification
PPTX
08 wp7 push notification
PPTX
07 wp7 application lifecycle
PPTX
06 wp7 isolation storage
PPTX
03 wp7 application bar
PPTX
03 wp7 application bar
PPTX
05 wp7 launchers and choosers
PPTX
04 wp7 pivot and panorama
PPTX
02 wp7 building silverlight applications
团队高效沟通的秘密
高效团队的秘密
Worktile 更好用的企业协作平台
Hello, Worktile Pro
Windows Phone 7 in azure
Anytao 让windows phone应用在云端翱翔
13 wp7 working with azure
12 wp7 marketing windows phone applications
11 wp7 designing applicationsusingexpressionblend
10 wp7 local database
09 wp7 multitasking
08 wp7 push notification
08 wp7 push notification
07 wp7 application lifecycle
06 wp7 isolation storage
03 wp7 application bar
03 wp7 application bar
05 wp7 launchers and choosers
04 wp7 pivot and panorama
02 wp7 building silverlight applications

Recently uploaded (20)

PDF
Per capita expenditure prediction using model stacking based on satellite ima...
PPT
Teaching material agriculture food technology
PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
PDF
The Rise and Fall of 3GPP – Time for a Sabbatical?
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
PPTX
20250228 LYD VKU AI Blended-Learning.pptx
PDF
Encapsulation theory and applications.pdf
PDF
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
PDF
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
PPTX
Cloud computing and distributed systems.
PDF
MIND Revenue Release Quarter 2 2025 Press Release
PDF
NewMind AI Weekly Chronicles - August'25 Week I
PPTX
Big Data Technologies - Introduction.pptx
PDF
Diabetes mellitus diagnosis method based random forest with bat algorithm
PDF
Mobile App Security Testing_ A Comprehensive Guide.pdf
PDF
Review of recent advances in non-invasive hemoglobin estimation
PDF
Approach and Philosophy of On baking technology
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PDF
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
Per capita expenditure prediction using model stacking based on satellite ima...
Teaching material agriculture food technology
“AI and Expert System Decision Support & Business Intelligence Systems”
The Rise and Fall of 3GPP – Time for a Sabbatical?
Reach Out and Touch Someone: Haptics and Empathic Computing
Agricultural_Statistics_at_a_Glance_2022_0.pdf
20250228 LYD VKU AI Blended-Learning.pptx
Encapsulation theory and applications.pdf
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
Cloud computing and distributed systems.
MIND Revenue Release Quarter 2 2025 Press Release
NewMind AI Weekly Chronicles - August'25 Week I
Big Data Technologies - Introduction.pptx
Diabetes mellitus diagnosis method based random forest with bat algorithm
Mobile App Security Testing_ A Comprehensive Guide.pdf
Review of recent advances in non-invasive hemoglobin estimation
Approach and Philosophy of On baking technology
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
How UI/UX Design Impacts User Retention in Mobile Apps.pdf

Facebook and its development

Editor's Notes

  • #22: arsort($result);array_slice($result, 0, 5);