SlideShare ist ein Scribd-Unternehmen logo
1 von 42
Building Facebook Apps
             using PHP

                             Trinh Van Thanh
                                    Facebook App Leader
                                           Japan Division
                              SETA International Vietnam



      We Know Business, We Know Technology, We Are Global
ABOUT ME                                         ABOUT US
   TRINH VAN THANH                               Software Outsourcing
   Facebook App Development Leader               150 developers in
   @SETA International LLC since 2010             Hanoi, VN
   A Facebook Lover. Facebook 24/7              Market: US, Japan
   1000 hours developing Facebook Apps           2nd Join PHP Day as
   20 Facebook Apps built                         Sponsor and Presentor
   Top 3 Facebook App in Japan                   http://www.seta-
                                                   international.co.jp/
 Contact:
  thanhtv6075@setacinq.com.vn
  tvthanhdl@gmail.com




                            We Know Business, We Know Technology, We Are Global
AGENDA
  WHY FACEBOOK
  BUILDING FACEBOOK APPS USING PHP
  DEMO




              We Know Business, We Know Technology, We Are Global
WHY FACEBOOK
         We Know Business, We Know Technology, We Are Global
FACEBOOK IS HUGE ECO




Source: The perfect Startup, Fabemovel

                                         We Know Business, We Know Technology, We Are Global
PERFECT SCALING –VERY STABLE PLATFORM (NOW)




Source: The perfect Startup, Fabemovel

                                         We Know Business, We Know Technology, We Are Global
Social media on Facebook




          The Viral Loop




Source: The perfect Startup, Fabemovel



                                         We Know Business, We Know Technology, We Are Global
Facebook’s platform is built on three main tools




Source: The perfect Startup, Fabemovel

                                              We Know Business, We Know Technology, We Are Global
BUILDING FACEBOOK
APPS BY PHP
           We Know Business, We Know Technology, We Are Global
Facebook apps?


• Apps on Facebook.com
   – Canvas app
   – Page tab
   – Mobile web




                  We Know Business, We Know Technology, We Are Global
Canvas Apps


• It is just the “home” page of the application where the
  app is described to those who might want to use it.
• Example: http://apps.facebook.com/monipla/




                 We Know Business, We Know Technology, We Are Global
Canvas Apps




760px(default)


                                          Advertising
                                         CPM and CPC


   We Know Business, We Know Technology, We Are Global
Page Tab


• Facebook page: are a heavily used feature of Facebook. Major
   brands, celebrities, etc. use Facebook Pages as their "social
   home" on the web. One of the most interesting features of Apps
   on Facebook.com is the ability for your app to be used within the
   context of a Facebook Page.
Example:
    -   SETA:CINQ Vietnam, Ltd
    -   TERRAS
    -   PHPDay2012
    -   FordJapan
    -   Pargolfonline
    -   …
• Page tab are apps on Facebook Page.


                       We Know Business, We Know Technology, We Are Global
Page Tab




810px(max)
                                       advertising



We Know Business, We Know Technology, We Are Global
Page Tab




520px(default)




We Know Business, We Know Technology, We Are Global
Mobile Web




Source: socialbakers

                       We Know Business, We Know Technology, We Are Global
Mobile Web

• Mobile web apps are built using web
  technologies including HTML5, Javascript and
  CSS. You can build once and deploy
  everywhere, including on iPhone, iPad and
  Android.
   - Hummerbinbyun




             We Know Business, We Know Technology, We Are Global
Mobile Web




We Know Business, We Know Technology, We Are Global
Open Graph




•   Social network
•   Social media

•   Open graph 1.0 -> Like action only
•   Open graph 2.0 -> customize actions




                         We Know Business, We Know Technology, We Are Global
Open Graph 1.0




We Know Business, We Know Technology, We Are Global
Open Graph 2.0




We Know Business, We Know Technology, We Are Global
Build apps use PHP SDK with Graph API
                                        (Becoming a Facebook Developer)


•   Requires
•   Resources
•   How to build facebook app




                 We Know Business, We Know Technology, We Are Global
Requires

•   PHP (Support PHP, JS, IOS, Android SDK)
•   JS
•   HTML (HTML5 with mobile web)
•   CSS (CSS3 with mobile web)
•   MySQL (optional)




                   We Know Business, We Know Technology, We Are Global
Resources

• Tools - https://developers.facebook.com/tools/
• Bugs - https://developers.facebook.com/bugs
• Developer Application -
  https://developers.facebook.com/apps
• Developer Blog - https://developers.facebook.com/blog/
• Developer Roadmap -
  https://developers.facebook.com/roadmap/
• Document - https://developers.facebook.com/docs/
• PHP SDK - https://github.com/facebook/facebook-php-sdk




               We Know Business, We Know Technology, We Are Global
Create a Facebook App
                                                                   (Create)

• Start by visiting the Developer App. If you haven't created an
  application before you will be prompted to add the Developer
  Application.




                    We Know Business, We Know Technology, We Are Global
Create a Facebook App
                                                   (Configuring Canvas apps)




                                                       Enable auth on
                                                     domain & subdomain
Only app developer
will be able to use
        app
                                                        Required if check
                                                          permission




                                                   Default: 760px
                                                    Fluid: 100%


                      We Know Business, We Know Technology, We Are Global
Code example
                                                          (use PHP SDK)


• Installing and Initializing




                   We Know Business, We Know Technology, We Are Global
Code example
                                                           (Graph API)



•   Use static: Facebook::api(/* polymorphic */);
•   Use object: $facebook->api(/* polymorphic */);

•   /* polymorphic */:= {$path, $method, $params}




                  We Know Business, We Know Technology, We Are Global
Code example
                                         (Graph API)




We Know Business, We Know Technology, We Are Global
Code example
                                                         (Graph API)




• Function fbRedirect():




                We Know Business, We Know Technology, We Are Global
Code example
                                                      (Post Status)




• Permission: publish_stream

$facebook->api('/me/feed', 'POST',
   array(
    'link' => 'www.yourdomain.com',
    'message' => 'Posting with the PHP SDK! on
   http://yourdomain.com'
   ));




              We Know Business, We Know Technology, We Are Global
Code example
                                                             (Post Photo)


•   Permissions: publish_stream, photo_upload

//Required set to upload photo
   $facebook->setFileUploadSupport( true );

$photo = 'path-to-photo'; //required in host login to apps
$message = 'Photo upload via the PHP SDK! on
   http://yourdomain.com';
$facebook->api('/me/photos', 'POST', array(
                    'source' => '@' . $photo,
                    'message' => $message,
            ));



                  We Know Business, We Know Technology, We Are Global
Code example
                                                          (count LIKE of an url)


$link = 'LINK_TO_COUNT';
$likes = $facebook->api(array(
      'query' => 'SELECT share_count, like_count, comment_count,
      total_count FROM link_stat WHERE url IN("' . $link . '")',
     'method' => 'fql.query')
);




                     We Know Business, We Know Technology, We Are Global
Create a Facebook App
                                                      (Configuring Page tab)


• You can find these settings in the "Basic" section of your app's
  settings in the Developer App under 'Select how your app
  integrates with Facebook'. Click 'Page Tab' to expand the Page Tab
  settings, and the Page Tab fields will appear




                    We Know Business, We Know Technology, We Are Global
Create a Facebook App
                                                        (Page Tab Width)


• The amount of space available to your tab app is bounded by the
  outer context of Facebook. It may be configured to display with a
  width of 520 pixels (default) or 810 pixels.




                  We Know Business, We Know Technology, We Are Global
Code example
                                                       (Page tab: check LIKE page)

$signedRequest = $facebook->getSignedRequest();
$isLiked = $signedRequest["page"]["liked"];

if( $isLiked ){
           //load visible contents to page tab
}else{
           //load invisible contents to page tab
           //Show message “click like button to app”
}




                     We Know Business, We Know Technology, We Are Global
Combined with JS SDK
                                                            (loading js)
•   Add to body:




                   We Know Business, We Know Technology, We Are Global
Combined with JS SDK
                                                               (loading js)


•   FB.Canvas.setAutoGrow(timeout);
•   FB.Canvas.setSize();
•   FB.Canvas.scrollTo();




                      We Know Business, We Know Technology, We Are Global
Facebook for Websites
                                                      (social plugins)

• Like
• Share
• Comment

• http://developers.facebook.com/docs/plugins




                 We Know Business, We Know Technology, We Are Global
DEMO
       We Know Business, We Know Technology, We Are Global
DISCUSSION

             We Know Business, We Know Technology, We Are Global
THANK YOU




                    http://www.facebook.com/setacinq


        We Know Business, We Know Technology, We Are Global

Weitere ähnliche Inhalte

Ähnlich wie Building a facebook application by php

Deep linking at App Promotion Summit
Deep linking at App Promotion SummitDeep linking at App Promotion Summit
Deep linking at App Promotion SummitAlexandre Jubien
 
Intro to tech stacks bonny
Intro to tech stacks bonnyIntro to tech stacks bonny
Intro to tech stacks bonnyLama K Banna
 
Insights on Android App Development, Marketing and Monetization
Insights on Android App Development, Marketing and MonetizationInsights on Android App Development, Marketing and Monetization
Insights on Android App Development, Marketing and MonetizationJayneel Patel
 
Anubavam Technologies I Phone Offerings
Anubavam Technologies I Phone OfferingsAnubavam Technologies I Phone Offerings
Anubavam Technologies I Phone OfferingsSandeep Mohan
 
Mobile Apps - Where's the beef
Mobile Apps - Where's the beefMobile Apps - Where's the beef
Mobile Apps - Where's the beefcompuccino
 
GlitterLabs-Product-Portfolio.pptx (1)
GlitterLabs-Product-Portfolio.pptx (1)GlitterLabs-Product-Portfolio.pptx (1)
GlitterLabs-Product-Portfolio.pptx (1)glitterlabs
 
Planning Your Progressive Web App
Planning Your Progressive Web AppPlanning Your Progressive Web App
Planning Your Progressive Web AppJason Grigsby
 
Shiny Agency's Facebook Development Guidelines
Shiny Agency's Facebook Development GuidelinesShiny Agency's Facebook Development Guidelines
Shiny Agency's Facebook Development GuidelinesRoy Pereira
 
BLUG 2011 - Explaining the IBM Social Business Toolkit
BLUG 2011 - Explaining the IBM Social Business ToolkitBLUG 2011 - Explaining the IBM Social Business Toolkit
BLUG 2011 - Explaining the IBM Social Business ToolkitRené Winkelmeyer
 
Daffodil iOS App Development Portfolio
Daffodil iOS App Development PortfolioDaffodil iOS App Development Portfolio
Daffodil iOS App Development PortfolioAshok Surendran
 
Building Social Business Applications with OpenSocial
Building Social Business Applications with OpenSocialBuilding Social Business Applications with OpenSocial
Building Social Business Applications with OpenSocialClint Oram
 
Appsplash'16 session(1) "Introduction to mobile application"
Appsplash'16 session(1) "Introduction to mobile application"Appsplash'16 session(1) "Introduction to mobile application"
Appsplash'16 session(1) "Introduction to mobile application"Hany Halim
 
Cool Things You Can Do with Python.pdf
Cool Things You Can Do with Python.pdfCool Things You Can Do with Python.pdf
Cool Things You Can Do with Python.pdfAppdeveloper10
 
DroidCon 2011: Developing HTML5 and hybrid Android apps using Phonegap
DroidCon 2011: Developing HTML5 and hybrid Android apps using PhonegapDroidCon 2011: Developing HTML5 and hybrid Android apps using Phonegap
DroidCon 2011: Developing HTML5 and hybrid Android apps using PhonegapAyushman Jain
 
Phonegap facebook plugin - Seoul & Tokyo
Phonegap facebook plugin - Seoul & TokyoPhonegap facebook plugin - Seoul & Tokyo
Phonegap facebook plugin - Seoul & TokyoSteve Gill
 
HackU: IIT Madras: Hacking Yahoo! Social
HackU: IIT Madras: Hacking Yahoo! SocialHackU: IIT Madras: Hacking Yahoo! Social
HackU: IIT Madras: Hacking Yahoo! SocialSaurabh Sahni
 

Ähnlich wie Building a facebook application by php (20)

Deep linking at App Promotion Summit
Deep linking at App Promotion SummitDeep linking at App Promotion Summit
Deep linking at App Promotion Summit
 
Alex jubien-think mobile
Alex jubien-think mobileAlex jubien-think mobile
Alex jubien-think mobile
 
Intro to tech stacks bonny
Intro to tech stacks bonnyIntro to tech stacks bonny
Intro to tech stacks bonny
 
Insights on Android App Development, Marketing and Monetization
Insights on Android App Development, Marketing and MonetizationInsights on Android App Development, Marketing and Monetization
Insights on Android App Development, Marketing and Monetization
 
Anubavam Technologies I Phone Offerings
Anubavam Technologies I Phone OfferingsAnubavam Technologies I Phone Offerings
Anubavam Technologies I Phone Offerings
 
Mobile Apps - Where's the beef
Mobile Apps - Where's the beefMobile Apps - Where's the beef
Mobile Apps - Where's the beef
 
GlitterLabs-Product-Portfolio.pptx (1)
GlitterLabs-Product-Portfolio.pptx (1)GlitterLabs-Product-Portfolio.pptx (1)
GlitterLabs-Product-Portfolio.pptx (1)
 
Planning Your Progressive Web App
Planning Your Progressive Web AppPlanning Your Progressive Web App
Planning Your Progressive Web App
 
Shiny Agency's Facebook Development Guidelines
Shiny Agency's Facebook Development GuidelinesShiny Agency's Facebook Development Guidelines
Shiny Agency's Facebook Development Guidelines
 
BLUG 2011 - Explaining the IBM Social Business Toolkit
BLUG 2011 - Explaining the IBM Social Business ToolkitBLUG 2011 - Explaining the IBM Social Business Toolkit
BLUG 2011 - Explaining the IBM Social Business Toolkit
 
Daffodil iOS App Development Portfolio
Daffodil iOS App Development PortfolioDaffodil iOS App Development Portfolio
Daffodil iOS App Development Portfolio
 
Building Social Business Applications with OpenSocial
Building Social Business Applications with OpenSocialBuilding Social Business Applications with OpenSocial
Building Social Business Applications with OpenSocial
 
PHP Developer
PHP DeveloperPHP Developer
PHP Developer
 
How to create an app
How to create an appHow to create an app
How to create an app
 
Appsplash'16 session(1) "Introduction to mobile application"
Appsplash'16 session(1) "Introduction to mobile application"Appsplash'16 session(1) "Introduction to mobile application"
Appsplash'16 session(1) "Introduction to mobile application"
 
Cool Things You Can Do with Python.pdf
Cool Things You Can Do with Python.pdfCool Things You Can Do with Python.pdf
Cool Things You Can Do with Python.pdf
 
DroidCon 2011: Developing HTML5 and hybrid Android apps using Phonegap
DroidCon 2011: Developing HTML5 and hybrid Android apps using PhonegapDroidCon 2011: Developing HTML5 and hybrid Android apps using Phonegap
DroidCon 2011: Developing HTML5 and hybrid Android apps using Phonegap
 
Phonegap facebook plugin - Seoul & Tokyo
Phonegap facebook plugin - Seoul & TokyoPhonegap facebook plugin - Seoul & Tokyo
Phonegap facebook plugin - Seoul & Tokyo
 
FCartel - Summer Internship 2013
FCartel - Summer Internship 2013FCartel - Summer Internship 2013
FCartel - Summer Internship 2013
 
HackU: IIT Madras: Hacking Yahoo! Social
HackU: IIT Madras: Hacking Yahoo! SocialHackU: IIT Madras: Hacking Yahoo! Social
HackU: IIT Madras: Hacking Yahoo! Social
 

Mehr von AiTi Education

AiTi Education Profile
AiTi Education ProfileAiTi Education Profile
AiTi Education ProfileAiTi Education
 
AiTi Education Software Testing Session 03
AiTi Education Software Testing Session 03AiTi Education Software Testing Session 03
AiTi Education Software Testing Session 03AiTi Education
 
AiTi Education Software Testing Session 02 b
AiTi Education Software Testing Session 02 bAiTi Education Software Testing Session 02 b
AiTi Education Software Testing Session 02 bAiTi Education
 
AiTi Education Software Testing Session 02 a
AiTi Education Software Testing Session 02 aAiTi Education Software Testing Session 02 a
AiTi Education Software Testing Session 02 aAiTi Education
 
AiTi Education Software Testing Session 01 b
AiTi Education Software Testing Session 01 bAiTi Education Software Testing Session 01 b
AiTi Education Software Testing Session 01 bAiTi Education
 
AiTi Education Software Testing Session 01 a
AiTi Education Software Testing Session 01 aAiTi Education Software Testing Session 01 a
AiTi Education Software Testing Session 01 aAiTi Education
 
Vietnam mobile internet_2014_mwork_vietnam_mobile_day
Vietnam mobile internet_2014_mwork_vietnam_mobile_dayVietnam mobile internet_2014_mwork_vietnam_mobile_day
Vietnam mobile internet_2014_mwork_vietnam_mobile_dayAiTi Education
 
[Vietnam Mobile Day 2014] Tăng doanh thu quảng cáo cho mobile site và ứng dụn...
[Vietnam Mobile Day 2014] Tăng doanh thu quảng cáo cho mobile site và ứng dụn...[Vietnam Mobile Day 2014] Tăng doanh thu quảng cáo cho mobile site và ứng dụn...
[Vietnam Mobile Day 2014] Tăng doanh thu quảng cáo cho mobile site và ứng dụn...AiTi Education
 
[Vietnam Mobile Day 2014] Mobile money - Xu hướng thanh toán nhỏ trên mobile ...
[Vietnam Mobile Day 2014] Mobile money - Xu hướng thanh toán nhỏ trên mobile ...[Vietnam Mobile Day 2014] Mobile money - Xu hướng thanh toán nhỏ trên mobile ...
[Vietnam Mobile Day 2014] Mobile money - Xu hướng thanh toán nhỏ trên mobile ...AiTi Education
 
[Vietnam Mobile Day 2014] Mobile kết nối thế giới số và thế giới thực và vai ...
[Vietnam Mobile Day 2014] Mobile kết nối thế giới số và thế giới thực và vai ...[Vietnam Mobile Day 2014] Mobile kết nối thế giới số và thế giới thực và vai ...
[Vietnam Mobile Day 2014] Mobile kết nối thế giới số và thế giới thực và vai ...AiTi Education
 
[Vietnam Mobile Day 2014] The new mobile marketing channel: Social Wifi Marke...
[Vietnam Mobile Day 2014] The new mobile marketing channel: Social Wifi Marke...[Vietnam Mobile Day 2014] The new mobile marketing channel: Social Wifi Marke...
[Vietnam Mobile Day 2014] The new mobile marketing channel: Social Wifi Marke...AiTi Education
 
[Vietnam Mobile Day 2014] Cá nhân hóa và xác định Khách hàng mục tiêu trong q...
[Vietnam Mobile Day 2014] Cá nhân hóa và xác định Khách hàng mục tiêu trong q...[Vietnam Mobile Day 2014] Cá nhân hóa và xác định Khách hàng mục tiêu trong q...
[Vietnam Mobile Day 2014] Cá nhân hóa và xác định Khách hàng mục tiêu trong q...AiTi Education
 
[Vietnam Mobile Day 2014] Chiến lược thu hút người dùng cho ứng dụng tại thị ...
[Vietnam Mobile Day 2014] Chiến lược thu hút người dùng cho ứng dụng tại thị ...[Vietnam Mobile Day 2014] Chiến lược thu hút người dùng cho ứng dụng tại thị ...
[Vietnam Mobile Day 2014] Chiến lược thu hút người dùng cho ứng dụng tại thị ...AiTi Education
 
[Vietnam Mobile Day 2014] Thanh toán mobile, hiện tại và xu hướng- Nguyễn Chi...
[Vietnam Mobile Day 2014] Thanh toán mobile, hiện tại và xu hướng- Nguyễn Chi...[Vietnam Mobile Day 2014] Thanh toán mobile, hiện tại và xu hướng- Nguyễn Chi...
[Vietnam Mobile Day 2014] Thanh toán mobile, hiện tại và xu hướng- Nguyễn Chi...AiTi Education
 
[Vietnam Mobile Day 2014] Thanh toán bằng thẻ ngân hàng trên mobile chưa bao ...
[Vietnam Mobile Day 2014] Thanh toán bằng thẻ ngân hàng trên mobile chưa bao ...[Vietnam Mobile Day 2014] Thanh toán bằng thẻ ngân hàng trên mobile chưa bao ...
[Vietnam Mobile Day 2014] Thanh toán bằng thẻ ngân hàng trên mobile chưa bao ...AiTi Education
 
[Vietnam Mobile Day 2014] How to build a mobile store app in 5 minutes - Ng...
[Vietnam Mobile Day 2014] How to build a mobile store app in 5 minutes - 	 Ng...[Vietnam Mobile Day 2014] How to build a mobile store app in 5 minutes - 	 Ng...
[Vietnam Mobile Day 2014] How to build a mobile store app in 5 minutes - Ng...AiTi Education
 
[Vietnam Mobile Day 2014] Touch the future of the web - Nguyễn Việt Anh - Cou...
[Vietnam Mobile Day 2014] Touch the future of the web - Nguyễn Việt Anh - Cou...[Vietnam Mobile Day 2014] Touch the future of the web - Nguyễn Việt Anh - Cou...
[Vietnam Mobile Day 2014] Touch the future of the web - Nguyễn Việt Anh - Cou...AiTi Education
 
[Vietnam Mobile Day 2014] Xu hướng trong Mobile Learning, 2014 - Nguyễn Thàn...
[Vietnam Mobile Day 2014] Xu hướng trong Mobile Learning, 2014  - Nguyễn Thàn...[Vietnam Mobile Day 2014] Xu hướng trong Mobile Learning, 2014  - Nguyễn Thàn...
[Vietnam Mobile Day 2014] Xu hướng trong Mobile Learning, 2014 - Nguyễn Thàn...AiTi Education
 
[Vietnam Mobile Day 2014] Toàn cảnh thị trường game smartphone Việt Nam 2013....
[Vietnam Mobile Day 2014] Toàn cảnh thị trường game smartphone Việt Nam 2013....[Vietnam Mobile Day 2014] Toàn cảnh thị trường game smartphone Việt Nam 2013....
[Vietnam Mobile Day 2014] Toàn cảnh thị trường game smartphone Việt Nam 2013....AiTi Education
 
[Vietnam Mobile Day 2014] Toàn cảnh thị trường game smartphone Việt Nam 2013....
[Vietnam Mobile Day 2014] Toàn cảnh thị trường game smartphone Việt Nam 2013....[Vietnam Mobile Day 2014] Toàn cảnh thị trường game smartphone Việt Nam 2013....
[Vietnam Mobile Day 2014] Toàn cảnh thị trường game smartphone Việt Nam 2013....AiTi Education
 

Mehr von AiTi Education (20)

AiTi Education Profile
AiTi Education ProfileAiTi Education Profile
AiTi Education Profile
 
AiTi Education Software Testing Session 03
AiTi Education Software Testing Session 03AiTi Education Software Testing Session 03
AiTi Education Software Testing Session 03
 
AiTi Education Software Testing Session 02 b
AiTi Education Software Testing Session 02 bAiTi Education Software Testing Session 02 b
AiTi Education Software Testing Session 02 b
 
AiTi Education Software Testing Session 02 a
AiTi Education Software Testing Session 02 aAiTi Education Software Testing Session 02 a
AiTi Education Software Testing Session 02 a
 
AiTi Education Software Testing Session 01 b
AiTi Education Software Testing Session 01 bAiTi Education Software Testing Session 01 b
AiTi Education Software Testing Session 01 b
 
AiTi Education Software Testing Session 01 a
AiTi Education Software Testing Session 01 aAiTi Education Software Testing Session 01 a
AiTi Education Software Testing Session 01 a
 
Vietnam mobile internet_2014_mwork_vietnam_mobile_day
Vietnam mobile internet_2014_mwork_vietnam_mobile_dayVietnam mobile internet_2014_mwork_vietnam_mobile_day
Vietnam mobile internet_2014_mwork_vietnam_mobile_day
 
[Vietnam Mobile Day 2014] Tăng doanh thu quảng cáo cho mobile site và ứng dụn...
[Vietnam Mobile Day 2014] Tăng doanh thu quảng cáo cho mobile site và ứng dụn...[Vietnam Mobile Day 2014] Tăng doanh thu quảng cáo cho mobile site và ứng dụn...
[Vietnam Mobile Day 2014] Tăng doanh thu quảng cáo cho mobile site và ứng dụn...
 
[Vietnam Mobile Day 2014] Mobile money - Xu hướng thanh toán nhỏ trên mobile ...
[Vietnam Mobile Day 2014] Mobile money - Xu hướng thanh toán nhỏ trên mobile ...[Vietnam Mobile Day 2014] Mobile money - Xu hướng thanh toán nhỏ trên mobile ...
[Vietnam Mobile Day 2014] Mobile money - Xu hướng thanh toán nhỏ trên mobile ...
 
[Vietnam Mobile Day 2014] Mobile kết nối thế giới số và thế giới thực và vai ...
[Vietnam Mobile Day 2014] Mobile kết nối thế giới số và thế giới thực và vai ...[Vietnam Mobile Day 2014] Mobile kết nối thế giới số và thế giới thực và vai ...
[Vietnam Mobile Day 2014] Mobile kết nối thế giới số và thế giới thực và vai ...
 
[Vietnam Mobile Day 2014] The new mobile marketing channel: Social Wifi Marke...
[Vietnam Mobile Day 2014] The new mobile marketing channel: Social Wifi Marke...[Vietnam Mobile Day 2014] The new mobile marketing channel: Social Wifi Marke...
[Vietnam Mobile Day 2014] The new mobile marketing channel: Social Wifi Marke...
 
[Vietnam Mobile Day 2014] Cá nhân hóa và xác định Khách hàng mục tiêu trong q...
[Vietnam Mobile Day 2014] Cá nhân hóa và xác định Khách hàng mục tiêu trong q...[Vietnam Mobile Day 2014] Cá nhân hóa và xác định Khách hàng mục tiêu trong q...
[Vietnam Mobile Day 2014] Cá nhân hóa và xác định Khách hàng mục tiêu trong q...
 
[Vietnam Mobile Day 2014] Chiến lược thu hút người dùng cho ứng dụng tại thị ...
[Vietnam Mobile Day 2014] Chiến lược thu hút người dùng cho ứng dụng tại thị ...[Vietnam Mobile Day 2014] Chiến lược thu hút người dùng cho ứng dụng tại thị ...
[Vietnam Mobile Day 2014] Chiến lược thu hút người dùng cho ứng dụng tại thị ...
 
[Vietnam Mobile Day 2014] Thanh toán mobile, hiện tại và xu hướng- Nguyễn Chi...
[Vietnam Mobile Day 2014] Thanh toán mobile, hiện tại và xu hướng- Nguyễn Chi...[Vietnam Mobile Day 2014] Thanh toán mobile, hiện tại và xu hướng- Nguyễn Chi...
[Vietnam Mobile Day 2014] Thanh toán mobile, hiện tại và xu hướng- Nguyễn Chi...
 
[Vietnam Mobile Day 2014] Thanh toán bằng thẻ ngân hàng trên mobile chưa bao ...
[Vietnam Mobile Day 2014] Thanh toán bằng thẻ ngân hàng trên mobile chưa bao ...[Vietnam Mobile Day 2014] Thanh toán bằng thẻ ngân hàng trên mobile chưa bao ...
[Vietnam Mobile Day 2014] Thanh toán bằng thẻ ngân hàng trên mobile chưa bao ...
 
[Vietnam Mobile Day 2014] How to build a mobile store app in 5 minutes - Ng...
[Vietnam Mobile Day 2014] How to build a mobile store app in 5 minutes - 	 Ng...[Vietnam Mobile Day 2014] How to build a mobile store app in 5 minutes - 	 Ng...
[Vietnam Mobile Day 2014] How to build a mobile store app in 5 minutes - Ng...
 
[Vietnam Mobile Day 2014] Touch the future of the web - Nguyễn Việt Anh - Cou...
[Vietnam Mobile Day 2014] Touch the future of the web - Nguyễn Việt Anh - Cou...[Vietnam Mobile Day 2014] Touch the future of the web - Nguyễn Việt Anh - Cou...
[Vietnam Mobile Day 2014] Touch the future of the web - Nguyễn Việt Anh - Cou...
 
[Vietnam Mobile Day 2014] Xu hướng trong Mobile Learning, 2014 - Nguyễn Thàn...
[Vietnam Mobile Day 2014] Xu hướng trong Mobile Learning, 2014  - Nguyễn Thàn...[Vietnam Mobile Day 2014] Xu hướng trong Mobile Learning, 2014  - Nguyễn Thàn...
[Vietnam Mobile Day 2014] Xu hướng trong Mobile Learning, 2014 - Nguyễn Thàn...
 
[Vietnam Mobile Day 2014] Toàn cảnh thị trường game smartphone Việt Nam 2013....
[Vietnam Mobile Day 2014] Toàn cảnh thị trường game smartphone Việt Nam 2013....[Vietnam Mobile Day 2014] Toàn cảnh thị trường game smartphone Việt Nam 2013....
[Vietnam Mobile Day 2014] Toàn cảnh thị trường game smartphone Việt Nam 2013....
 
[Vietnam Mobile Day 2014] Toàn cảnh thị trường game smartphone Việt Nam 2013....
[Vietnam Mobile Day 2014] Toàn cảnh thị trường game smartphone Việt Nam 2013....[Vietnam Mobile Day 2014] Toàn cảnh thị trường game smartphone Việt Nam 2013....
[Vietnam Mobile Day 2014] Toàn cảnh thị trường game smartphone Việt Nam 2013....
 

Kürzlich hochgeladen

SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024Scott Keck-Warren
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfEnterprise Knowledge
 
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 RobisonAnna Loughnan Colquhoun
 
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...HostedbyConfluent
 
Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxOnBoard
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitecturePixlogix Infotech
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesSinan KOZAK
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhisoniya singh
 
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 MenDelhi Call girls
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slidespraypatel2
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...shyamraj55
 
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 slidevu2urc
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 

Kürzlich hochgeladen (20)

SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
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
 
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
 
Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptx
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC Architecture
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen Frames
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
 
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
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
 
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
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 

Building a facebook application by php

  • 1. Building Facebook Apps using PHP Trinh Van Thanh Facebook App Leader Japan Division SETA International Vietnam We Know Business, We Know Technology, We Are Global
  • 2. ABOUT ME ABOUT US  TRINH VAN THANH  Software Outsourcing  Facebook App Development Leader  150 developers in  @SETA International LLC since 2010 Hanoi, VN  A Facebook Lover. Facebook 24/7   Market: US, Japan  1000 hours developing Facebook Apps  2nd Join PHP Day as  20 Facebook Apps built Sponsor and Presentor  Top 3 Facebook App in Japan  http://www.seta- international.co.jp/  Contact: thanhtv6075@setacinq.com.vn tvthanhdl@gmail.com We Know Business, We Know Technology, We Are Global
  • 3. AGENDA  WHY FACEBOOK  BUILDING FACEBOOK APPS USING PHP  DEMO We Know Business, We Know Technology, We Are Global
  • 4. WHY FACEBOOK We Know Business, We Know Technology, We Are Global
  • 5. FACEBOOK IS HUGE ECO Source: The perfect Startup, Fabemovel We Know Business, We Know Technology, We Are Global
  • 6. PERFECT SCALING –VERY STABLE PLATFORM (NOW) Source: The perfect Startup, Fabemovel We Know Business, We Know Technology, We Are Global
  • 7. Social media on Facebook The Viral Loop Source: The perfect Startup, Fabemovel We Know Business, We Know Technology, We Are Global
  • 8. Facebook’s platform is built on three main tools Source: The perfect Startup, Fabemovel We Know Business, We Know Technology, We Are Global
  • 9. BUILDING FACEBOOK APPS BY PHP We Know Business, We Know Technology, We Are Global
  • 10. Facebook apps? • Apps on Facebook.com – Canvas app – Page tab – Mobile web We Know Business, We Know Technology, We Are Global
  • 11. Canvas Apps • It is just the “home” page of the application where the app is described to those who might want to use it. • Example: http://apps.facebook.com/monipla/ We Know Business, We Know Technology, We Are Global
  • 12. Canvas Apps 760px(default) Advertising CPM and CPC We Know Business, We Know Technology, We Are Global
  • 13. Page Tab • Facebook page: are a heavily used feature of Facebook. Major brands, celebrities, etc. use Facebook Pages as their "social home" on the web. One of the most interesting features of Apps on Facebook.com is the ability for your app to be used within the context of a Facebook Page. Example: - SETA:CINQ Vietnam, Ltd - TERRAS - PHPDay2012 - FordJapan - Pargolfonline - … • Page tab are apps on Facebook Page. We Know Business, We Know Technology, We Are Global
  • 14. Page Tab 810px(max) advertising We Know Business, We Know Technology, We Are Global
  • 15. Page Tab 520px(default) We Know Business, We Know Technology, We Are Global
  • 16. Mobile Web Source: socialbakers We Know Business, We Know Technology, We Are Global
  • 17. Mobile Web • Mobile web apps are built using web technologies including HTML5, Javascript and CSS. You can build once and deploy everywhere, including on iPhone, iPad and Android. - Hummerbinbyun We Know Business, We Know Technology, We Are Global
  • 18. Mobile Web We Know Business, We Know Technology, We Are Global
  • 19. Open Graph • Social network • Social media • Open graph 1.0 -> Like action only • Open graph 2.0 -> customize actions We Know Business, We Know Technology, We Are Global
  • 20. Open Graph 1.0 We Know Business, We Know Technology, We Are Global
  • 21. Open Graph 2.0 We Know Business, We Know Technology, We Are Global
  • 22. Build apps use PHP SDK with Graph API (Becoming a Facebook Developer) • Requires • Resources • How to build facebook app We Know Business, We Know Technology, We Are Global
  • 23. Requires • PHP (Support PHP, JS, IOS, Android SDK) • JS • HTML (HTML5 with mobile web) • CSS (CSS3 with mobile web) • MySQL (optional) We Know Business, We Know Technology, We Are Global
  • 24. Resources • Tools - https://developers.facebook.com/tools/ • Bugs - https://developers.facebook.com/bugs • Developer Application - https://developers.facebook.com/apps • Developer Blog - https://developers.facebook.com/blog/ • Developer Roadmap - https://developers.facebook.com/roadmap/ • Document - https://developers.facebook.com/docs/ • PHP SDK - https://github.com/facebook/facebook-php-sdk We Know Business, We Know Technology, We Are Global
  • 25. Create a Facebook App (Create) • Start by visiting the Developer App. If you haven't created an application before you will be prompted to add the Developer Application. We Know Business, We Know Technology, We Are Global
  • 26. Create a Facebook App (Configuring Canvas apps) Enable auth on domain & subdomain Only app developer will be able to use app Required if check permission Default: 760px Fluid: 100% We Know Business, We Know Technology, We Are Global
  • 27. Code example (use PHP SDK) • Installing and Initializing We Know Business, We Know Technology, We Are Global
  • 28. Code example (Graph API) • Use static: Facebook::api(/* polymorphic */); • Use object: $facebook->api(/* polymorphic */); • /* polymorphic */:= {$path, $method, $params} We Know Business, We Know Technology, We Are Global
  • 29. Code example (Graph API) We Know Business, We Know Technology, We Are Global
  • 30. Code example (Graph API) • Function fbRedirect(): We Know Business, We Know Technology, We Are Global
  • 31. Code example (Post Status) • Permission: publish_stream $facebook->api('/me/feed', 'POST', array( 'link' => 'www.yourdomain.com', 'message' => 'Posting with the PHP SDK! on http://yourdomain.com' )); We Know Business, We Know Technology, We Are Global
  • 32. Code example (Post Photo) • Permissions: publish_stream, photo_upload //Required set to upload photo $facebook->setFileUploadSupport( true ); $photo = 'path-to-photo'; //required in host login to apps $message = 'Photo upload via the PHP SDK! on http://yourdomain.com'; $facebook->api('/me/photos', 'POST', array( 'source' => '@' . $photo, 'message' => $message, )); We Know Business, We Know Technology, We Are Global
  • 33. Code example (count LIKE of an url) $link = 'LINK_TO_COUNT'; $likes = $facebook->api(array( 'query' => 'SELECT share_count, like_count, comment_count, total_count FROM link_stat WHERE url IN("' . $link . '")', 'method' => 'fql.query') ); We Know Business, We Know Technology, We Are Global
  • 34. Create a Facebook App (Configuring Page tab) • You can find these settings in the "Basic" section of your app's settings in the Developer App under 'Select how your app integrates with Facebook'. Click 'Page Tab' to expand the Page Tab settings, and the Page Tab fields will appear We Know Business, We Know Technology, We Are Global
  • 35. Create a Facebook App (Page Tab Width) • The amount of space available to your tab app is bounded by the outer context of Facebook. It may be configured to display with a width of 520 pixels (default) or 810 pixels. We Know Business, We Know Technology, We Are Global
  • 36. Code example (Page tab: check LIKE page) $signedRequest = $facebook->getSignedRequest(); $isLiked = $signedRequest["page"]["liked"]; if( $isLiked ){ //load visible contents to page tab }else{ //load invisible contents to page tab //Show message “click like button to app” } We Know Business, We Know Technology, We Are Global
  • 37. Combined with JS SDK (loading js) • Add to body: We Know Business, We Know Technology, We Are Global
  • 38. Combined with JS SDK (loading js) • FB.Canvas.setAutoGrow(timeout); • FB.Canvas.setSize(); • FB.Canvas.scrollTo(); We Know Business, We Know Technology, We Are Global
  • 39. Facebook for Websites (social plugins) • Like • Share • Comment • http://developers.facebook.com/docs/plugins We Know Business, We Know Technology, We Are Global
  • 40. DEMO We Know Business, We Know Technology, We Are Global
  • 41. DISCUSSION We Know Business, We Know Technology, We Are Global
  • 42. THANK YOU http://www.facebook.com/setacinq We Know Business, We Know Technology, We Are Global