SlideShare a Scribd company logo
1 of 31
eed A
 You N App?
           k
   eboeo netnode.ch
Fac fisch r@
      .
 lukas




               23 FACEBOOK APP
           DEVELOPMENT ESSENTIALS
               FOR THE REST OF US




                      www.netnode.ch
Lukas Fischer
- CEO netnode IT services GmbH
- Webapplication Development
  - We love Drupal
  - We love Facebook Apps

- Founder of Guzuu.com
 -   On Demand Social Media Webshop
1 Where to start?
http://www.facebook.com/developers/
2 Create an App
http://www.facebook.com/developers/createapp.php
Create an App
3 Facebook App Architecture




                   http://www.zilby.com/images/arch.png
4 Facebook Client Librarys
http://wiki.developers.facebook.com/index.php/User:Client_Libraries
5 Facebook REST-API

include('facebook/client/facebook.php');

$facebook = new Facebook(KEY,SECRET);

$result = $facebook->api_client->DOSOMETHING();
6 FACEBOOK REST-API

  > 200 API methods
Facebook API Examples
include('facebook/client/facebook.php');

$facebook = new Facebook(KEY,SECRET);

$result = $facebook->api_client->users_getInfo(‘1432471352’, ‘sex’);


Array
(
    [0] => Array
        (
            [sex] => male
            [uid] => 1432471352
        )

)
7 Facebook Userdata
   http://wiki.developers.facebook.com/index.php/Users.getInfo


           84 personal data chunks!
 (including birth date, current location and preferred meeting sex)
8 Extended permissions
    http://wiki.developers.facebook.com/index.php/Extended_permissions

publish stream, read stream, email, read_mailbox, sms, ...
9 FBML
>100 FBML tags
FBML Example
10 Facebook Bookmarks
11 FQL
FQL: SELECT name, pic FROM user WHERE uid = ‘1432471352’


Array
(
    [0] => Array
        (
            [name] => Luc Fischer
            [pic] => PICURL
        )

)
FQL Examples
See the names of all the events that
your friends have been invited to:


  SELECT name FROM event
  WHERE eid IN (
      SELECT eid from event_member
      WHERE uid IN (
          SELECT uid2 FROM friend WHERE uid1=''$user_id''))
12 FQL tables
 42 FQL tables
13 Test Console
http://developers.facebook.com/tools.php
14 Facebook Policies

http://www.facebook.com/terms.php

http://developers.facebook.com/policy/
15 Facebook API Roadmap
 http://wiki.developers.facebook.com/index.php/Developer_Roadmap
16 App Metrics
17 Linking user content
-   http://www.facebook.com/profile.php?id=XXXXX

-   http://www.facebook.com/poke.php?id=XXXXX

-   http://www.facebook.com/addfriend.php?id=XXXXX

-   http://www.facebook.com/photos.php?id=XXXXX

-   http://www.facebook.com/wall.php?id=XXXXX

-   http://www.facebook.com/notes.php?id=XXXXX
18 How to be up to date?
18 Developer FAQ
http://www.facebook.com/help/?page=431
19 WIKI
http://wiki.developers.facebook.com/
20 Forum
21 Healthy?
http://developers.facebook.com/live_status.php
22 Push Changes
http://wiki.developers.facebook.com/index.php/Push_Changes
23 Devkon App
  http://apps.facebook.com/devkonapp/
eed A
 You N App?
           k
   eboeo netnode.ch
                      Thank You
Fac fisch r@
      .
 lukas




                                   @lukasfischer
                      lukas.fischer@netnode.ch

                                www.netnode.ch

More Related Content

What's hot

Mapa cartográfico VOTO EN BLANCO
Mapa cartográfico VOTO EN BLANCOMapa cartográfico VOTO EN BLANCO
Mapa cartográfico VOTO EN BLANCO
pduqueg
 
Responsive pcb
Responsive pcbResponsive pcb
Responsive pcb
mjovel
 
กิจกรรมการประกวดแข่งขัน
กิจกรรมการประกวดแข่งขันกิจกรรมการประกวดแข่งขัน
กิจกรรมการประกวดแข่งขัน
tittayaporn keawpetch
 
Facebook API for Developers : Introducing the Facebook Platform
Facebook API for Developers : Introducing the Facebook PlatformFacebook API for Developers : Introducing the Facebook Platform
Facebook API for Developers : Introducing the Facebook Platform
Wildan Maulana
 
Organization
OrganizationOrganization
Organization
cat509
 

What's hot (18)

Facebook Open Stream API - Facebook Developer Garage Dhaka
Facebook Open Stream API - Facebook Developer Garage DhakaFacebook Open Stream API - Facebook Developer Garage Dhaka
Facebook Open Stream API - Facebook Developer Garage Dhaka
 
Mapa cartográfico VOTO EN BLANCO
Mapa cartográfico VOTO EN BLANCOMapa cartográfico VOTO EN BLANCO
Mapa cartográfico VOTO EN BLANCO
 
Banco de imágenes
Banco de imágenesBanco de imágenes
Banco de imágenes
 
Introduction
IntroductionIntroduction
Introduction
 
Responsive pcb
Responsive pcbResponsive pcb
Responsive pcb
 
Inspiraciones para Huellas Digitales
Inspiraciones para Huellas Digitales Inspiraciones para Huellas Digitales
Inspiraciones para Huellas Digitales
 
Dashboard
DashboardDashboard
Dashboard
 
Http xayaguud
Http xayaguudHttp xayaguud
Http xayaguud
 
กิจกรรมการประกวดแข่งขัน
กิจกรรมการประกวดแข่งขันกิจกรรมการประกวดแข่งขัน
กิจกรรมการประกวดแข่งขัน
 
Chat app for linked in
Chat app for linked inChat app for linked in
Chat app for linked in
 
Top 150 high pr dofollow profile creation sites list 2017
Top 150 high pr dofollow profile creation sites list 2017Top 150 high pr dofollow profile creation sites list 2017
Top 150 high pr dofollow profile creation sites list 2017
 
Búsqueda y gestión de la información en la
Búsqueda y gestión de la información en laBúsqueda y gestión de la información en la
Búsqueda y gestión de la información en la
 
5 social media tools and trends to better serve your clients
5 social media tools and trends to better serve your clients5 social media tools and trends to better serve your clients
5 social media tools and trends to better serve your clients
 
Possible Fonts
Possible FontsPossible Fonts
Possible Fonts
 
Facebook API for Developers : Introducing the Facebook Platform
Facebook API for Developers : Introducing the Facebook PlatformFacebook API for Developers : Introducing the Facebook Platform
Facebook API for Developers : Introducing the Facebook Platform
 
Get backlink from redirect #o
Get backlink from redirect #oGet backlink from redirect #o
Get backlink from redirect #o
 
Organization
OrganizationOrganization
Organization
 
JavaScript WTFs Episode 3
JavaScript WTFs Episode 3JavaScript WTFs Episode 3
JavaScript WTFs Episode 3
 

Similar to 23 FACEBOOK APP DEVELOPMENT ESSENTIALS

Introduction to facebook platform
Introduction to facebook platformIntroduction to facebook platform
Introduction to facebook platform
Venkatesh Narayanan
 
Peepcode facebook-2-rails on facebook
Peepcode facebook-2-rails on facebookPeepcode facebook-2-rails on facebook
Peepcode facebook-2-rails on facebook
sushilprajapati
 
Facebook API
Facebook APIFacebook API
Facebook API
snipermkd
 
Facebook für PHP Entwickler - phpugffm
Facebook für PHP Entwickler - phpugffmFacebook für PHP Entwickler - phpugffm
Facebook für PHP Entwickler - phpugffm
Stephan Hochdörfer
 
Collaboration Portal for Researchers
Collaboration Portal for ResearchersCollaboration Portal for Researchers
Collaboration Portal for Researchers
Fatemeh Khast Khoda
 
Facebook Apps: Ein Entwicklungsleitfaden - WMMRN
Facebook Apps: Ein Entwicklungsleitfaden - WMMRNFacebook Apps: Ein Entwicklungsleitfaden - WMMRN
Facebook Apps: Ein Entwicklungsleitfaden - WMMRN
Stephan Hochdörfer
 

Similar to 23 FACEBOOK APP DEVELOPMENT ESSENTIALS (20)

Introduction to facebook platform
Introduction to facebook platformIntroduction to facebook platform
Introduction to facebook platform
 
The social media developer
The social media developer The social media developer
The social media developer
 
Creating a Facebook App
Creating a Facebook AppCreating a Facebook App
Creating a Facebook App
 
Happy facebook developer
Happy facebook developerHappy facebook developer
Happy facebook developer
 
Leveraging Rails to Build Facebook Apps
Leveraging Rails to Build Facebook AppsLeveraging Rails to Build Facebook Apps
Leveraging Rails to Build Facebook Apps
 
Shiny Agency's Facebook Development Guidelines
Shiny Agency's Facebook Development GuidelinesShiny Agency's Facebook Development Guidelines
Shiny Agency's Facebook Development Guidelines
 
Peepcode facebook-2-rails on facebook
Peepcode facebook-2-rails on facebookPeepcode facebook-2-rails on facebook
Peepcode facebook-2-rails on facebook
 
Facebook api
Facebook api Facebook api
Facebook api
 
Facebook API
Facebook APIFacebook API
Facebook API
 
Facebook Connect Tutorial
Facebook Connect TutorialFacebook Connect Tutorial
Facebook Connect Tutorial
 
Building Facebook Apps
Building Facebook AppsBuilding Facebook Apps
Building Facebook Apps
 
Facebook für PHP Entwickler - phpugffm
Facebook für PHP Entwickler - phpugffmFacebook für PHP Entwickler - phpugffm
Facebook für PHP Entwickler - phpugffm
 
Facebook Platform
Facebook PlatformFacebook Platform
Facebook Platform
 
Collaboration Portal for Researchers
Collaboration Portal for ResearchersCollaboration Portal for Researchers
Collaboration Portal for Researchers
 
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
 
Facebook Apps: Ein Entwicklungsleitfaden - WMMRN
Facebook Apps: Ein Entwicklungsleitfaden - WMMRNFacebook Apps: Ein Entwicklungsleitfaden - WMMRN
Facebook Apps: Ein Entwicklungsleitfaden - WMMRN
 
An overview of the Windows Phone 7 platform
An overview of the Windows Phone 7 platformAn overview of the Windows Phone 7 platform
An overview of the Windows Phone 7 platform
 
Facebook Platform for Developers
Facebook Platform for DevelopersFacebook Platform for Developers
Facebook Platform for Developers
 
Facebook Developer Garage Hamburg_cellity AG
Facebook Developer Garage Hamburg_cellity AGFacebook Developer Garage Hamburg_cellity AG
Facebook Developer Garage Hamburg_cellity AG
 
Technical Introduction to YDN
Technical Introduction to YDNTechnical Introduction to YDN
Technical Introduction to YDN
 

More from NETNODE AG

Abstimmungsbarometer app
Abstimmungsbarometer appAbstimmungsbarometer app
Abstimmungsbarometer app
NETNODE AG
 
Inbound Marketing
Inbound MarketingInbound Marketing
Inbound Marketing
NETNODE AG
 
WebUP Luzern Intro + Internet Geschichte
WebUP Luzern Intro + Internet GeschichteWebUP Luzern Intro + Internet Geschichte
WebUP Luzern Intro + Internet Geschichte
NETNODE AG
 
drupalmonitor.com - drupal monitoring made simple
drupalmonitor.com - drupal monitoring made simpledrupalmonitor.com - drupal monitoring made simple
drupalmonitor.com - drupal monitoring made simple
NETNODE AG
 
Mehrsprachige Webseiten mit Drupal
Mehrsprachige Webseiten mit DrupalMehrsprachige Webseiten mit Drupal
Mehrsprachige Webseiten mit Drupal
NETNODE AG
 

More from NETNODE AG (14)

NETNODE Culture Book
NETNODE Culture BookNETNODE Culture Book
NETNODE Culture Book
 
Akquise - epic mindshare #A
Akquise - epic mindshare #AAkquise - epic mindshare #A
Akquise - epic mindshare #A
 
Drupal vs. Joomla vs. Wordpress
Drupal vs. Joomla vs. WordpressDrupal vs. Joomla vs. Wordpress
Drupal vs. Joomla vs. Wordpress
 
Abstimmungsbarometer app
Abstimmungsbarometer appAbstimmungsbarometer app
Abstimmungsbarometer app
 
Inbound Marketing
Inbound MarketingInbound Marketing
Inbound Marketing
 
WebUP Luzern Intro + Internet Geschichte
WebUP Luzern Intro + Internet GeschichteWebUP Luzern Intro + Internet Geschichte
WebUP Luzern Intro + Internet Geschichte
 
Drupalmonitor.com - Drupal User Group Meetup Basel
Drupalmonitor.com - Drupal User Group Meetup BaselDrupalmonitor.com - Drupal User Group Meetup Basel
Drupalmonitor.com - Drupal User Group Meetup Basel
 
drupal session 4 - drupal version control at netnode
drupal session 4 - drupal version control at netnodedrupal session 4 - drupal version control at netnode
drupal session 4 - drupal version control at netnode
 
Drupal session 3 - biginlucerne.com - lessons learned
Drupal session 3 - biginlucerne.com - lessons learnedDrupal session 3 - biginlucerne.com - lessons learned
Drupal session 3 - biginlucerne.com - lessons learned
 
Drupal session 1 - What are drupal sessions?
Drupal session 1 - What are drupal sessions?Drupal session 1 - What are drupal sessions?
Drupal session 1 - What are drupal sessions?
 
netnode - drupal pur - drupal development experts
netnode - drupal pur - drupal development expertsnetnode - drupal pur - drupal development experts
netnode - drupal pur - drupal development experts
 
drupalmonitor.com - drupal monitoring made simple
drupalmonitor.com - drupal monitoring made simpledrupalmonitor.com - drupal monitoring made simple
drupalmonitor.com - drupal monitoring made simple
 
Mehrsprachige Webseiten mit Drupal
Mehrsprachige Webseiten mit DrupalMehrsprachige Webseiten mit Drupal
Mehrsprachige Webseiten mit Drupal
 
The Lean Startup - Basics
The Lean Startup - BasicsThe Lean Startup - Basics
The Lean Startup - Basics
 

Recently uploaded

Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
vu2urc
 

Recently uploaded (20)

The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 

23 FACEBOOK APP DEVELOPMENT ESSENTIALS

Editor's Notes