SlideShare a Scribd company logo
Facebook JavaScript SDK
Facebook JavaScript SDK
Yi-Fan Chu, 2016
Social Network Application
Department of Computer Science, University of Taipei
Facebook JavaScript SDK
You’ve learned something related before…
It’s not so hard as you think!
We got some fun time later :)
Goal: Let your users login by Facebook.
Before we start…
Facebook JavaScript SDK
1.65 Billion
Facebook JavaScript SDK
1.Essential Knowledge
2.Technical Details
3.Implementation
3 parts of today…
Facebook JavaScript SDK
Essential Knowledge
Part 1 of 3
Facebook JavaScript SDK
Facebook Developers Website
Facebook App
JavaScript SDK
Graph API
Essential Knowledge
Facebook JavaScript SDK
App Dashboard
Documents
SDKs
Developer Tools
Facebook Developers Website
The most important support while developing Facebook App.
Manage your app and see all your App info here.
Right place, right kit. Use the right SDK corresponding to your platform.
Tutorials and details of SDK and API.
There are some tools to help you develop Facebook App.
Facebook JavaScript SDK
Facebook Developers
Create your Facebook App here!
https://developers.facebook.com
Facebook JavaScript SDK
App Dashboard
Control your Facebook App here!
Facebook JavaScript SDK
SDKs
We will utilize JavaScript SDK today.
Facebook JavaScript SDK
Developer Tools
Tools to help you to develop Facebook App.
Facebook JavaScript SDK
Facebook Developers Website
Facebook App
JavaScript SDK
Graph API
Essential Knowledge
Facebook JavaScript SDK
Website: present information to users
Web App: interact with users
Website v.s Web App
Facebook JavaScript SDK
Facebook App
What could Facebook do for us?
Login Share Analytics
Monetization Messenger
Facebook JavaScript SDK
Account Creation
Personalization
Social
Facebook App
Login your App with a single click, and the account is cross-platform.
You could access to the personal information of your users, e.g. name, email, gender..
Let you know who are the users that are also friends in Facebook.
The benefits you get when you create a Facebook App.
Liked, birthday, hometown, location…
Facebook JavaScript SDK
Facebook Developers Website
Facebook App
JavaScript SDK
Graph API
Essential Knowledge
Facebook JavaScript SDK
Application Programming Interface
Software Development Kit
Integrated Development Environment
API v.s. SDK v.s. IDE
Let’s figure out what these abbreviations are…
Many tools are included in SDK. Different platform, different SDk.
We need Facebook JavaScript SDK to develop a web Facebook App.
A library of functions and methods.
You don’t need to know how it works, but you have to know how to call them.
Usually includes code editor, debugger, compiler.
Facebook JavaScript SDK
APIs
All kinds of APIs..
Map API REST API Data.Taipei
Data API Fusion API
Facebook JavaScript SDK
What’s the difference between “Website” and
“Web App”?
What’s API, SDK, and IDE?
Find a partner and try to explain to him/her.
Fun time
Facebook JavaScript SDK
Authentication
Load the products of Facebook
Use the functions of Facebook API
JavaScript SDK
What can Facebook SDK do for you?
Get permission to access to API. It’s the essential part to rock up your App.
Just like using “Bootstrap”, there’re several plugins you could load into your App.
Ready-made functions are available, just call them.
Facebook JavaScript SDK
Access Token
The Key of Authentication.
User clicked “login with
Facebook” in your app.
User Authenticates
through typing
username and password
Your App requests
access and permissions
via SDK and login dialog
Your App receives
the access token
from Facebook
SDK gets authorized,
your app can access
to Facebook API
Facebook JavaScript SDK
App
1.login
with fb
www.tvbizz.net
2.request
3.login
dialog
4.accept
5.access token
Facebook JavaScript SDK
What is an access token?
What are the five steps of getting access
token?
Find a partner and try to explain to him/her.
Fun Time
Facebook JavaScript SDK
Facebook Login
Sharing
Social Plugins
Products
What you can do with Facebook SDK.
Facebook JavaScript SDK
Like Button
Share Button
Send Button
Follow Button
Social Plugins
There are some components Facebook had build for you. Just take it.
Comment
Embedded Video
Embedded Posts
Page Plugin
Facebook JavaScript SDK
Facebook Developers Website
Facebook App
JavaScript SDK
Graph API
Essential Knowledge
Facebook JavaScript SDK
Nodes
Edges
Fields
Graph API
The primary way for apps to read and write to the Facebook social graph.
Every “object” in Facebook is a node, such as user, group, page, and photo.
Connection or relationship of “object”, such as User’s friend, Page’s photo.
Properties of “object”, such as name, birthday, work, gender of a person.
Facebook JavaScript SDK
“What a beautiful
day!”
“WTH is
FB JS SDK!?”
“I wanna drop
the course!”
Friends
Posts
Name Work
Birthday
Music
Photos
Facebook JavaScript SDK
What are the three components of Graph API?
What’s the basic concepts of Graph API?
Find a partner and try to explain what is
Graph API.
Fun Time
Facebook JavaScript SDK
Technical Details
Part 2 of 3
Facebook JavaScript SDK
Download JS SDK
Login
Graph API
Sharing
Social Plugins
Technical Details
Facebook JavaScript SDK
No standalone file need to be installed
Include the snippet of code in your App
Insert it directly after the opening <body>
Remember : This is the first step of everything!
Download JavaScript SDK
Facebook JavaScript SDK
Download JavaScript SDK
Self called function
fbAsyncInit
is called.
Don’t forget to
change the App ID.
Facebook JavaScript SDK
FB.Event.subscribe( event, callback);
FB.getLoginStatus( callback);
In JavaScript SDK…
Facebook JavaScript SDK
Callback Function
function jobcallback
Result/data
argument
Facebook JavaScript SDK
Download JS SDK
Login
Graph API
Sharing
Social Plugins
Technical Details
Facebook JavaScript SDK
1.Use the login button
2.Call the login function
Login
There’re two ways to login.
Facebook JavaScript SDK
Just like using Bootstrap, assign a specific class
1.Login Button
Facebook JavaScript SDK
Several attributes of the login button are
available in the documents.
1.Login Button
Facebook JavaScript SDK
What are the two ways to login FB?
Fun time
Facebook JavaScript SDK
Call the function “FB.login()”, for instance :
2.Login Function
Facebook JavaScript SDK
FB.login(callback)
2.Login Function
Facebook JavaScript SDK
Download JS SDK
Login
Graph API
Sharing
Social Plugins
Technical Details
Facebook JavaScript SDK
FB.api(graph_path, callback)
Graph API
Facebook JavaScript SDK
FB.api(graph_path, callback)
Graph API
Facebook JavaScript SDK
FB.api(graph_path, callback)
Graph API
Facebook JavaScript SDK
What is callback function?
Fun time
Facebook JavaScript SDK
Download JS SDK
Login
Graph API
Sharing
Social Plugins
Technical Details
Facebook JavaScript SDK
FB.ui(parameters, callback)
Sharing
Facebook JavaScript SDK
Download JS SDK
Login
Graph API
Sharing
Social Plugins
Technical Details
Facebook JavaScript SDK
Like button
Social Plugin
Facebook JavaScript SDK
Implementation
Part 3 of 3
Facebook JavaScript SDK
Checkpoint 1: Setup your environment
Checkpoint 2: Set static file into Django
Checkpoint 3: Using database in Django
Checkpoint 4: Facebook login
Checkpoint 5: Sharing and friend list
Implementation
Facebook JavaScript SDK
Install pip. (already installed in G509)
Install Django. (already installed in G509)
Install Heroku CLI. (already installed in G509)
Create a new account in Heroku.
Build the app on Heroku.
1.Set up environment
The goal of checkpoint 1 is to..
Facebook JavaScript SDK
Create a Heroku Account
https://www.heroku.com/home
Sign up for free
Facebook JavaScript SDK
Create a Heroku Account
https://www.heroku.com/home
2.Choose Python
3.Create Free Account
1.Enter your
Name and Email
Facebook JavaScript SDK
Create a Heroku Account
Check your email to comfirm.
2.Click the link to confirm
1.Check your email
Facebook JavaScript SDK
Create a Heroku Account
Set your password for Heroku.
Facebook JavaScript SDK
Create a Heroku Account
Congrats! Your account is set.
Facebook JavaScript SDK
Create an App on Heroku
Stop here first…
Don’t leave the page…
Let’s go to FB dev.
Facebook JavaScript SDK
Open your iTerm2.
iterm2 is a useful terminal app.
Facebook JavaScript SDK
Create an App on Heroku
We utilize the template heroku gived us.
cd Desktop1.go to Desktop
2. download the
template
django-admin.py startproject --template=https://github.com/heroku/heroku-django-template/archive/master.zip --name=Procfile myproject
Facebook JavaScript SDK
Create an App on Heroku
We utilize the template heroku gived us.
Your first project is born!!
Facebook JavaScript SDK
Login Heroku.
Use the email you created Heroku account.
Facebook JavaScript SDK
Go to myproject/
cd myproject
Facebook JavaScript SDK
Create an App on Heroku.
heroku create u10x160xx
App URL
Facebook JavaScript SDK
Git commit.
commit the first version of your project.
Facebook JavaScript SDK
Set Heroku as a git repository.
heroku git:remote -a u10x160xx
Facebook JavaScript SDK
Push your project to Heroku.
git push heroku master
Facebook JavaScript SDK
Nice work!
Your Django project is running on Heroku.
https://u10x160xx.herokuapp.com/
Facebook JavaScript SDK
Set up your Sublime and iTerm.
Put your static html into Django.
Push your project to Heroku by git.
2.Set static file into Django
The goal of checkpoint 2 is to..
Facebook JavaScript SDK
Open Sublime Text 2.
Mac: Press f4
Facebook JavaScript SDK
Drag your project in Sublime.
drag into Sublime.
Facebook JavaScript SDK
If Side Bar didn’t show..
View/ Side Bar/ Show Side Bar
Facebook JavaScript SDK
Open your iTerm.
Set your iTerm and Sublime like this…
Mac : “cmd” + “=”
to enlarge font size
Facebook JavaScript SDKpython manage.py startapp myapp
Create an app in your project
Facebook JavaScript SDK
Create 2 new folders in myapp.
Facebook JavaScript SDK
C
myapp/templates/ & myapp/static/
Create 2 new folders in myapp.
Facebook JavaScript SDK
C
static/js/ & static/images/ & static/css/
Create 3 new folders in static.
Facebook JavaScript SDK
C
templates/myapp/
Create a new folders in templates.
Facebook JavaScript SDK
Create index.html
myapp/ index.html
2.save the file
(command + s)
1.create a new file
index.html
Facebook JavaScript SDK
Check your folder structure…
It’s complicated…
Facebook JavaScript SDK
Copy the file on Github.
https://github.com/tom8u4286/index/blob/master/index.html
copy the file
(command + c)
Facebook JavaScript SDK
Paste into index.html
templates/ myapp/ index.html
1.Paste into index.html
(command + v)
2.Save
(command + s)
Facebook JavaScript SDK
add “myapp” in settings.py
myproject/ settings.py
1.Find INSTALLED_APPS in settings.py
2.Add a string ‘myapp’
3.Save (command + s)
Facebook JavaScript SDK
Render a view
myapp/ views.py
1.Add a function index() in myapp/ views.py
2.Save (command + s)
Facebook JavaScript SDK
Set the URL in urls.py
myproject/ urls.py
1.Import views in myapp/
2.Set the root url to views.index
3.Save (command + s)
Facebook JavaScript SDK
Push your project to Heroku.
Facebook JavaScript SDK
What is the problem?
The CSS file has not been loaded..
Facebook JavaScript SDK
Create index.css
myapp/ static/ css/ index.css
2.save the file
(command + s)
1.create a new file
index.css
Facebook JavaScript SDK
https://github.com/tom8u4286/index/blob/master/index.css
copy the file
(command + c)
Copy the file on Github.
Facebook JavaScript SDKmyapp/ static/ css/ index.css
1.Paste into index.html
(command + v)
Paste into index.css
2.Save (command + s)
Facebook JavaScript SDK
Load the static files in html
templates/ myapp/ index.html
1.load the static files in index.html
2.set the source of css file.
3.Save (command + s)
Facebook JavaScript SDK
Save the img from Github.
https://github.com/tom8u4286/index/blob/master/logo.png
Facebook JavaScript SDKmyapp/ static/ images/ logo.png
safe in: myapp/static/images/
Save the img from Github.
Facebook JavaScript SDKtemplates/ myapp/ index.html
Load the static files in html
1.set the source of image file.
2.Save (command + s)
Facebook JavaScript SDK
Push your project to Heroku.
Facebook JavaScript SDKYour static html is working on Django.
Nice work!
Facebook JavaScript SDK
Set the schema in models.py
Migrate the database both in local and heroku
Get the html form by form.py
Show the posts in your app.
3.Using database in Django
The goal of checkpoint 3 is to..
Facebook JavaScript SDK
Create a model called “Post”.
myapp/ models.py
Facebook JavaScript SDKDo them both in local and on heroku.
Makemigrations and migrate.
Facebook JavaScript SDK
2.save the file
(command + s)
1.create forms.py in myapp/
forms.py
Create forms.py
myapp/ forms.py
Facebook JavaScript SDK
Create AddPost to get forms.
myapp/ forms.py
Facebook JavaScript SDK
Set the views if we get request
myapp/ views.py
2.import the classes we created
1.Go to myapp/ views.py
Facebook JavaScript SDK
Set the views if we get request
myapp/ views.py
1.Add a condition if we got POST request
Scroll down
2.Save (command + s)
Facebook JavaScript SDK
Push your project to Heroku.
Facebook JavaScript SDK
Makemigrations and migrate.
Facebook JavaScript SDK
Try to post something..
Try to post something…
Facebook JavaScript SDK
What?
We still need to add something in index.html…
Facebook JavaScript SDKtemplates/ index.html
Add the tags and push again.
1.Go to index.html
2.Add the csrf tags
4.Push again
3.Save file
Facebook JavaScript SDK
The posts didn’t appear…
We need to fix something in views and index.
???
Facebook JavaScript SDK
Render the posts in views.py
myapp/ views.py
1.Go to myapp/views.py
2.Add post_list
3.Save file
Facebook JavaScript SDKtemplates/ myapp/ index.html
Add the tags and push again.
1.Go to templates/ myapp/ index.html
2.Render the posts by Django tags
3.Save (command + s)
4.Push again
Facebook JavaScript SDKYour posts appeared.
Nice work!
Facebook JavaScript SDK
Load the FB SDK into your app.
Create an app on Facebook dev.
Set the user profile picture.
4.Facebook login
The goal of checkpoint 4 is to..
Facebook JavaScript SDK
Copy the code in FB dev.
https://developers.facebook.com/docs/javascript/quickstart
Facebook JavaScript SDKtemplates/ myapp/ index.html
Paste into index.html
2.Important!
Directly after the opening <body> tag
1.Go to templates/ myapp/ index.html
3.Save (command + s)
Facebook JavaScript SDK
Create an App on FB dev.
https://developers.facebook.com
Login with Facebook.
Facebook JavaScript SDK
Create an App on FB dev.
Add a new App in your Facebook dev account.
Add a New App.
Facebook JavaScript SDK
Create an App on FB dev.
Add a new App in your Facebook dev account.
1.Name for your app.
e.g. sna2016
3.Category
App for Pages
2.Set your email.
4.Create App ID
Facebook JavaScript SDK
Create an App on FB dev.
May have some security check…
Facebook JavaScript SDK
Create an App on FB dev.
Go to the dashboard of your app.
Click Dashboard.
Facebook JavaScript SDK
Copy the App ID
It’s in the Dashboard of your FB app.
Facebook JavaScript SDK
Assign the id to an var.
templates/ myapp/ index.html
Facebook JavaScript SDK
Get the profile picture.
templates/ myapp/ index.html
Scroll down
Bigger screen shot in next page..
Facebook JavaScript SDK
Facebook JavaScript SDK
We call the func after FB init.
Scroll up
templates/ myapp/ index.html
Facebook JavaScript SDK
loginCheck function…
Scroll down
Bigger screen shot in next page..
templates/ myapp/ index.html
Facebook JavaScript SDK
C
W
Facebook JavaScript SDK
Call the loginCheck()
Scroll down
templates/ myapp/ index.html
Facebook JavaScript SDK
Push your project to Heroku.
Facebook JavaScript SDK
Set your url in the dashboard.
2.Go to Settings/ Basic
1.Go back to your app Dashboard
3.Copy and paste your url
4.Save Changes
Facebook JavaScript SDK
Nice work!
Facebook JavaScript SDK
Sharing button.
Load user friends in facebook.
5.Sharing and friend list
The goal of checkpoint 5 is to..
Facebook JavaScript SDK
Add a sharing function.
templates/ myapp/ index.html
Scroll down
Facebook JavaScript SDK
Push your project to Heroku.
Facebook JavaScript SDKM
Nice work!
Facebook JavaScript SDK
In window.fbloaded, add an api call
Bigger screen shot in next page..
templates/ myapp/ index.html
Facebook JavaScript SDK
Facebook JavaScript SDK
In loginCheck, add a scope.
templates/ myapp/ index.html
Facebook JavaScript SDK
Make your app public.
1.App Review
2.Turn on.
Facebook JavaScript SDK
Facebook JavaScript SDK
Ask a friend to login!
Facebook JavaScript SDK
Don’t give up! Keep going!
You have more potential than you think.
One last thing…
Facebook JavaScript SDK
http://www.slideshare.net/littleq0903/
introduction-to-facebook-javascript-sdk-28815523
https://github.com/littleq0903/fb-js-codelab
LittleQ Koi Leon FlyC API
Denffer Mobile Dictionary
Reference

More Related Content

What's hot (17)

PPTX
Download PowerPoint Project on social programming for engineering students
SkyingBlogger
 
ODP
Facebook Platform
David Nattriss
 
PDF
Facebook Open Stream API - Facebook Developer Garage Dhaka
Mohammad Emran Hasan
 
DOC
Google ug3509
hmsoh
 
PPTX
Facebook Developer Garage Cyberjaya
Mehedi Hasan Sumon
 
PPTX
Step into the SharePoint branding world, tools and techniques
Benjamin Niaulin
 
PPTX
Salesforce.com Lightning
Malinda Lamahewa
 
ODP
SEO For WordPress
Donna Fontenot
 
PPT
Facebook 3rd Party Api
Yoss Cohen
 
PDF
Peepcode facebook-2-rails on facebook
sushilprajapati
 
PDF
Shalik patel report myfacebook
Shalikram Patel
 
PDF
Implementing Web Services In Java
Edureka!
 
PDF
Con Quick Start 6pg
fchang2005
 
PPTX
Naoki Hada iOS/Web/Mobile/Flash/RIA portfolio
hadanaoki
 
PPT
Connect with Facebook to Rails Application By Nyros Developer
Nyros Technologies
 
PPTX
SharePoint for Project Management (2016)
wandersick
 
PPTX
Common Web sites that use Plug-in API's
Takumi Monteza
 
Download PowerPoint Project on social programming for engineering students
SkyingBlogger
 
Facebook Platform
David Nattriss
 
Facebook Open Stream API - Facebook Developer Garage Dhaka
Mohammad Emran Hasan
 
Google ug3509
hmsoh
 
Facebook Developer Garage Cyberjaya
Mehedi Hasan Sumon
 
Step into the SharePoint branding world, tools and techniques
Benjamin Niaulin
 
Salesforce.com Lightning
Malinda Lamahewa
 
SEO For WordPress
Donna Fontenot
 
Facebook 3rd Party Api
Yoss Cohen
 
Peepcode facebook-2-rails on facebook
sushilprajapati
 
Shalik patel report myfacebook
Shalikram Patel
 
Implementing Web Services In Java
Edureka!
 
Con Quick Start 6pg
fchang2005
 
Naoki Hada iOS/Web/Mobile/Flash/RIA portfolio
hadanaoki
 
Connect with Facebook to Rails Application By Nyros Developer
Nyros Technologies
 
SharePoint for Project Management (2016)
wandersick
 
Common Web sites that use Plug-in API's
Takumi Monteza
 

Viewers also liked (20)

PPT
Happy facebook developer
Yu-Wei Chuang
 
PDF
Making Facebook Faster
guest1240e7c
 
PDF
Facebook App Development
Cristiano Betta
 
PPT
Facebook Development with Zend Framework
Brett Harris
 
PDF
Workshop : Facebook JavaScript SDK
Dimitar Danailov
 
PDF
Introduction to Facebook JavaScript & Python SDK
Colin Su
 
PDF
How To Create High-Converting Landing Pages With Conversion Centered Design [...
Oli Gardner
 
PPTX
Introduction to Advanced Javascript
Collaboration Technologies
 
PDF
Python - Lecture 1
Ravi Kiran Khareedi
 
PDF
Meetup Python Nantes - les tests en python
Arthur Lutz
 
PDF
Java OOP Programming language (Part 1) - Introduction to Java
OUM SAOKOSAL
 
PDF
Analysis of Fatal Utah Avalanches with Python. From Scraping, Analysis, to In...
Matt Harrison
 
PDF
Learning notes of r for python programmer (Temp1)
Chia-Chi Chang
 
PDF
PyCon 2013 : Scripting to PyPi to GitHub and More
Matt Harrison
 
PPT
Operator Overloading
Sardar Alam
 
PDF
Installing Python on Mac
Wei-Wen Hsu
 
PDF
Python for All
Pragya Goyal
 
PDF
Lesson1 python an introduction
Arulalan T
 
PDF
Introduction to python
Yi-Fan Chu
 
PDF
Python master class part 1
Chathuranga Bandara
 
Happy facebook developer
Yu-Wei Chuang
 
Making Facebook Faster
guest1240e7c
 
Facebook App Development
Cristiano Betta
 
Facebook Development with Zend Framework
Brett Harris
 
Workshop : Facebook JavaScript SDK
Dimitar Danailov
 
Introduction to Facebook JavaScript & Python SDK
Colin Su
 
How To Create High-Converting Landing Pages With Conversion Centered Design [...
Oli Gardner
 
Introduction to Advanced Javascript
Collaboration Technologies
 
Python - Lecture 1
Ravi Kiran Khareedi
 
Meetup Python Nantes - les tests en python
Arthur Lutz
 
Java OOP Programming language (Part 1) - Introduction to Java
OUM SAOKOSAL
 
Analysis of Fatal Utah Avalanches with Python. From Scraping, Analysis, to In...
Matt Harrison
 
Learning notes of r for python programmer (Temp1)
Chia-Chi Chang
 
PyCon 2013 : Scripting to PyPi to GitHub and More
Matt Harrison
 
Operator Overloading
Sardar Alam
 
Installing Python on Mac
Wei-Wen Hsu
 
Python for All
Pragya Goyal
 
Lesson1 python an introduction
Arulalan T
 
Introduction to python
Yi-Fan Chu
 
Python master class part 1
Chathuranga Bandara
 
Ad

Similar to Introduction to facebook javascript sdk (20)

PPT
Facebook API
snipermkd
 
PDF
Creating an Uber Clone - Part XXXIII - Transcript.pdf
ShaiAlmog1
 
PDF
Leynard quizon work portfolio (2012 to 2014)
Leynard Quizon
 
PPT
Facebook Connect Integration
mujahidslideshare
 
PPT
Facebook Connect
Pitra Satvika
 
PPT
What's New on the Facebook Platform, July 2011
Iskandar Najmuddin
 
DOCX
Some Useful Flash API
Tushar Vaghela
 
PDF
Developing Facebook Application
Kanda Runapongsa Saikaew
 
PDF
How NOT to Suck at App Distribution - Quick Start Guide - Appsocially's Growt...
Yusuke Takahashi, PhD
 
PPTX
Shiny Agency's Facebook Development Guidelines
Roy Pereira
 
PPTX
Jetpack compose session1 (1).pptx
ShubhamJogdand8
 
PPT
Facebook Coin
Sathiyamoorthi
 
PPT
Facebook Coin
Sathiyamoorthi
 
PPT
Facebook_Coin
Sathiyamoorthi
 
PPTX
Compose Camp-intro.pptx
GanpatParmar1
 
PPT
Facebook Coin
Sathiyamoorthi
 
PPTX
One graph to rule them all - Facebook
itnig
 
PPT
Creating a Facebook App
Mindgrub Technologies
 
PDF
Compose Camp Slide.pptx (1).pdf
AryanKhandelwal35
 
PPS
Virtual Tech Days 2010 - Integrating Social Networks with ASP.NET
Krishna T
 
Facebook API
snipermkd
 
Creating an Uber Clone - Part XXXIII - Transcript.pdf
ShaiAlmog1
 
Leynard quizon work portfolio (2012 to 2014)
Leynard Quizon
 
Facebook Connect Integration
mujahidslideshare
 
Facebook Connect
Pitra Satvika
 
What's New on the Facebook Platform, July 2011
Iskandar Najmuddin
 
Some Useful Flash API
Tushar Vaghela
 
Developing Facebook Application
Kanda Runapongsa Saikaew
 
How NOT to Suck at App Distribution - Quick Start Guide - Appsocially's Growt...
Yusuke Takahashi, PhD
 
Shiny Agency's Facebook Development Guidelines
Roy Pereira
 
Jetpack compose session1 (1).pptx
ShubhamJogdand8
 
Facebook Coin
Sathiyamoorthi
 
Facebook Coin
Sathiyamoorthi
 
Facebook_Coin
Sathiyamoorthi
 
Compose Camp-intro.pptx
GanpatParmar1
 
Facebook Coin
Sathiyamoorthi
 
One graph to rule them all - Facebook
itnig
 
Creating a Facebook App
Mindgrub Technologies
 
Compose Camp Slide.pptx (1).pdf
AryanKhandelwal35
 
Virtual Tech Days 2010 - Integrating Social Networks with ASP.NET
Krishna T
 
Ad

Recently uploaded (20)

PPTX
fatigue in aircraft structures-221113192308-0ad6dc8c.pptx
aviatecofficial
 
PDF
WD2(I)-RFQ-GW-1415_ Shifting and Filling of Sand in the Pond at the WD5 Area_...
ShahadathHossain23
 
PDF
20ES1152 Programming for Problem Solving Lab Manual VRSEC.pdf
Ashutosh Satapathy
 
PPTX
Distribution reservoir and service storage pptx
dhanashree78
 
PDF
AN EMPIRICAL STUDY ON THE USAGE OF SOCIAL MEDIA IN GERMAN B2C-ONLINE STORES
ijait
 
PDF
Basic_Concepts_in_Clinical_Biochemistry_2018كيمياء_عملي.pdf
AdelLoin
 
PDF
Electrical Engineer operation Supervisor
ssaruntatapower143
 
PDF
Pressure Measurement training for engineers and Technicians
AIESOLUTIONS
 
PPT
Footbinding.pptmnmkjkjkknmnnjkkkkkkkkkkkkkk
mamadoundiaye42742
 
PPTX
GitOps_Without_K8s_Training_detailed git repository
DanialHabibi2
 
PDF
SERVERLESS PERSONAL TO-DO LIST APPLICATION
anushaashraf20
 
PDF
MODULE-5 notes [BCG402-CG&V] PART-B.pdf
Alvas Institute of Engineering and technology, Moodabidri
 
PDF
Electrical Machines and Their Protection.pdf
Nabajyoti Banik
 
PPTX
Worm gear strength and wear calculation as per standard VB Bhandari Databook.
shahveer210504
 
PDF
Reasons for the succes of MENARD PRESSUREMETER.pdf
majdiamz
 
PPTX
DATA BASE MANAGEMENT AND RELATIONAL DATA
gomathisankariv2
 
PDF
Design Thinking basics for Engineers.pdf
CMR University
 
PPTX
Introduction to Internal Combustion Engines - Types, Working and Camparison.pptx
UtkarshPatil98
 
PPTX
MODULE 03 - CLOUD COMPUTING AND SECURITY.pptx
Alvas Institute of Engineering and technology, Moodabidri
 
PPTX
Water Resources Engineering (CVE 728)--Slide 3.pptx
mohammedado3
 
fatigue in aircraft structures-221113192308-0ad6dc8c.pptx
aviatecofficial
 
WD2(I)-RFQ-GW-1415_ Shifting and Filling of Sand in the Pond at the WD5 Area_...
ShahadathHossain23
 
20ES1152 Programming for Problem Solving Lab Manual VRSEC.pdf
Ashutosh Satapathy
 
Distribution reservoir and service storage pptx
dhanashree78
 
AN EMPIRICAL STUDY ON THE USAGE OF SOCIAL MEDIA IN GERMAN B2C-ONLINE STORES
ijait
 
Basic_Concepts_in_Clinical_Biochemistry_2018كيمياء_عملي.pdf
AdelLoin
 
Electrical Engineer operation Supervisor
ssaruntatapower143
 
Pressure Measurement training for engineers and Technicians
AIESOLUTIONS
 
Footbinding.pptmnmkjkjkknmnnjkkkkkkkkkkkkkk
mamadoundiaye42742
 
GitOps_Without_K8s_Training_detailed git repository
DanialHabibi2
 
SERVERLESS PERSONAL TO-DO LIST APPLICATION
anushaashraf20
 
MODULE-5 notes [BCG402-CG&V] PART-B.pdf
Alvas Institute of Engineering and technology, Moodabidri
 
Electrical Machines and Their Protection.pdf
Nabajyoti Banik
 
Worm gear strength and wear calculation as per standard VB Bhandari Databook.
shahveer210504
 
Reasons for the succes of MENARD PRESSUREMETER.pdf
majdiamz
 
DATA BASE MANAGEMENT AND RELATIONAL DATA
gomathisankariv2
 
Design Thinking basics for Engineers.pdf
CMR University
 
Introduction to Internal Combustion Engines - Types, Working and Camparison.pptx
UtkarshPatil98
 
MODULE 03 - CLOUD COMPUTING AND SECURITY.pptx
Alvas Institute of Engineering and technology, Moodabidri
 
Water Resources Engineering (CVE 728)--Slide 3.pptx
mohammedado3
 

Introduction to facebook javascript sdk