SlideShare a Scribd company logo
Social Semantic Webon Facebook and TwitterDr. Myungjin Lee
The webis more a social creation than a technical one. I designed it for a social effect — to help people work together — and not as a technical toy.
The Social NetworkIn The Social Network, director David Fincher and screenwriter Aaron Sorkin explore the moment at which Facebook, the most revolutionary social phenomena of the new century, was invented -- through the warring perspectives of the super-smart young men who each claimed to be there at its inception.
Social Webhow people socialize or interact with each otherthroughout the Webfrom Wikipedia
the Social Attributes in the Social WebIdentityGroupsMyungjin LeeConversationsPresenceRelationshipsSharingReputation
Weekly Market Sharefrom Hitwise.com
Market Share of VisitsMarket Share of Page Viewsfrom Hitwise.com
Top 20 WebsitesTop 20 Social Networking Websitesfrom Hitwise.com
Social Semantic Web on Facebook Open Graph protocol and Twitter Annotations
10terabytes7terabytesfrom Internet Summit 2010
Social Semantic Web on Facebook Open Graph protocol and Twitter Annotations
Semantic Webto allow machines to understand the meaningof information on the World Wide Webfrom Wikipedia
Semantic Web Layer Cake
Distributed and Separated Data in the Social Web
Social Semantic Web on Facebook Open Graph protocol and Twitter Annotations
Linked Datavia dereferenceable URIs on the Webto describe a method of exposing, sharing, and connecting datafrom Wikipedia
Vocabularies for Linking and SharingFriend of a frienda phrase used to refer to someone that one does not know well, literally, a friend of a friendFOAFSemantically-Interlinked Online Communitiesmethods for interconnecting discussion methods such as blogs, forums and mailing lists to each otherSIOCSimple Knowledge Organization System formal languages designed for representation of thesauri, classification schemes, taxonomies, subject-heading systems, or any other type of structured controlled vocabularySKOSResource Description Framework – in – attributes a W3C Recommendation that adds a set of attribute level extensions to XHTML for embedding rich metadata within Web documentsRDFaMicroformata web-based approach to semantic markup which seeks to re-use existing HTML/XHTML tags to convey metadata and other attributes in web pagesMicroformatfrom Wikipedia
Social Semantic Web based on human contributions  and participations a Web of collective knowledge systemswhich are able to provide useful information from Wikipedia
SocialSemantic WebSIOC, DBpedia, TwineSocial WebWikis, blogs, social networksSemantic WebRDFS, OWL, SPARQLWorld Wide WebURIs, HTML, HTTPSemanticSyntax
Social Semantic Web on Facebook Open Graph protocol and Twitter Annotations
Social Semantic Web on Facebook Open Graph protocol and Twitter Annotations
the global mapping of everybody and hot they are relatedSocial Graphrelationships between users of the social networking servicean abstract concept of the social networkfrom Wikipedia
First Social Graph of Facebook in 2006is a friend ofis a friend ofis a friend ofis a friend ofMyungjin Lee
Social Graph of Facebook with Social Object in 2010is a friend ofis a fan ofis a friend ofis a friend ofis a friend ofis a fan ofMyungjin Leehas a relationship withis a member ofSocial Object
Social Objectthe reason two people are talking to each otherby Hugh Macleod
Like button of Facebook
Linking between you and outside of Facebooksimple way to share your content with friends on FacebookLikehttp://graph.facebook.com/me/likesMyungjin Lee
Not a Web Page Anymoresimple way to share your content with friends on FacebookLikehttp://graph.facebook.com/me/likesSocial ObjectMyungjin Lee
How to make social graph with social objects
Social Semantic Web on Facebook Open Graph protocol and Twitter Annotations
Open Graph Protocolenables any web pageto become a rich object in a social graphsimple technologyfrom Facebook
Design Goals of Open Graph Protocol
Representation Concepts of Open Graph ProtocolOne Web PageOne Social Object
Representation Concepts of Open Graph ProtocolPropertyof Open Graph protocolLiteral ValueURIof web pagelooks like
The Open Graph protocol is based on RDFa.
RDFaW3C Recommendation to add a set of attribute level extensions to XHTML for embedding rich metadatawithin Web documents
Example of RDFa in XHTML
However, the Open Graph protocol is ...
Use <meta> tagsin the <head> of your web page
Example of Open Graph Protocol<html xmlns:og="http://opengraphprotocol.org/schema/" xmlns:fb="http://www.facebook.com/2008/fbml">    <head>        <meta property="og:url" content="http://www.imdb.com/title/tt1285016/" />        <meta property='og:image' content='http://ia.media-imdb.com/…140_.jpg'>        <meta property='og:type' content='movie' />        <meta property='fb:app_id' content='115109575169727' />        <meta property='og:title' content='The Social Network (2010)' />        <meta property='og:site_name' content='IMDb' />...
What is needed? – Required Properties
The canonical URL of your object that will be used as its permanent ID in the graph.A Canonical URL<meta property="og:url" content="http://www.imdb.com/title/tt1285016/" />
The type of your object.What is the user linking?<meta property='og:type' content='movie' />Products and EntertainmentActivitiesGroupsPlacesalbum
book
drink
food
game
movie
product
song
tv_show
activity
sport
cause
sports_league
sports_team
city
country
landmark
state_provinceBusinessesOrganizationsbar
company
café
hotel
restaurantWebsitesband
government
non_profit
school
universityPeoplearticle
blog
website
actor
athlete
author
public_figure
musician
politician
directorThe title of your object as it should appear within the graph.A Clean Page Title<meta property='og:title' content='The Social Network (2010)' />
An image URL which should represent your object within the graph. An Image<meta property='og:image' content='http://ia.media-imdb.com/…140_.jpg‘>
What is desired? – Optional Properties
A one to two sentence description of your object. A Short Description<meta property='og:description’ content='Directed by David Fincher.			With Jesse Eisenberg, Andrew Garfield,			Justin Timberlake, Rooney Mara. ‘>
If your object is part of a larger web site, the name which should be displayed for the overall site. A Site Name<meta property='og:site_name' content='IMDb' />
You can specify location via latitude and longitude, a full address, or both. To specify latitude and longitude:og:latitude and og:longitudeTo specify a human readable address: og:street-address, og:locality, og:region, og:postal-code, and og:country-nameLocation Information<meta property="og:latitude" content="37.416343" /><meta property="og:longitude" content="-122.153013" /><meta property="og:street-address" content="1601 S California Ave" /><meta property="og:locality" content="Palo Alto" /><meta property="og:region" content="CA" /><meta property="og:postal-code" content="94304" /><meta property="og:country-name" content="USA" />
The Open Graph protocol supports the ability for you to specify contact information for your object. To specify contact informationog:email, og:phone_number, and og:fax_numberContact Information<meta property="og:email" content="me@example.com" /><meta property="og:phone_number" content="650-123-4567" /><meta property="og:fax_number" content="+1-415-123-4567" />
Example of Open Graph Protocol<html xmlns:og="http://opengraphprotocol.org/schema/" xmlns:fb="http://www.facebook.com/2008/fbml">    <head>        <meta property="og:url" content="http://www.imdb.com/title/tt1285016/" />        <meta property='og:image' content='http://ia.media-imdb.com/…140_.jpg'>        <meta property='og:type' content='movie' />        <meta property='fb:app_id' content='115109575169727' />        <meta property='og:title' content='The Social Network (2010)' />        <meta property='og:site_name' content='IMDb' />...
Social Semantic Web on Facebook Open Graph protocol and Twitter Annotations
Social Pluginto provide engaging social experiences to your users with just a line of HTMLfrom Facebook

More Related Content

PPTX
File Transfer Protocol
PPTX
11 Unit 1 Chapter 03 Data Handling
PPT
Binary Arithmetic
PDF
basic of desicion control statement in python
PPTX
Java servlets and CGI
PPTX
OPEN SHORTEST PATH FIRST (OSPF)
PDF
Introduction to Garbage Collection
PPTX
File Transfer Protocol
11 Unit 1 Chapter 03 Data Handling
Binary Arithmetic
basic of desicion control statement in python
Java servlets and CGI
OPEN SHORTEST PATH FIRST (OSPF)
Introduction to Garbage Collection

What's hot (20)

PPTX
Error Recovery strategies and yacc | Compiler Design
PPTX
11 Unit 1 Problem Solving Techniques
PPTX
OSI reference model
PPTX
Iso layers
DOC
Naming in Distributed System
PPTX
Linkers
PPTX
Object Oriented Design
PPTX
Lua Introduction
PPTX
Data link layer
PPTX
Recognition-of-tokens
PPTX
PDF
Computer networks lan
PPTX
Network and System Administration chapter 2
PPTX
Hashing Technique In Data Structures
PPTX
Hashing
PPT
Operations on linked list
PPT
BINARY TREE REPRESENTATION.ppt
PPTX
Elimination of left recursion
PPT
Memory management
PPTX
World wide web architecture presentation
Error Recovery strategies and yacc | Compiler Design
11 Unit 1 Problem Solving Techniques
OSI reference model
Iso layers
Naming in Distributed System
Linkers
Object Oriented Design
Lua Introduction
Data link layer
Recognition-of-tokens
Computer networks lan
Network and System Administration chapter 2
Hashing Technique In Data Structures
Hashing
Operations on linked list
BINARY TREE REPRESENTATION.ppt
Elimination of left recursion
Memory management
World wide web architecture presentation
Ad

Viewers also liked (20)

PDF
Comment viraliser les contenus de votre site grâce à l'open graph facebook
PPTX
Du bon usage de l OpenGraph Facebook
KEY
Facebook open graph Presentation
PPT
Facebook open graph explained
PPTX
Facebook Open Graph Protocol and Graph API (NoVA Code Camp 2010.1)
KEY
Facebook Open Graph Overview
PPTX
Getting started with Facebook OpenGraph API
PPTX
Gamification for Sales Reps
PPTX
Community at Mobile Casinos
PDF
Introduction to Gamification
PDF
The Social Semantic Web and Linked Data
PPTX
Social Semantic Web (Social Activity and Facebook)
PPTX
Semantic Wiki: Social Semantic Web in Use
PDF
Facebook Open Graph API and How To Use It
PPTX
Enabling reuse of arguments and opinions in open collaboration systems PhD vi...
PPT
Using Controlled Natural Language and First Order Logic to improve e-consulta...
PDF
Social Media and Scholarly Communication
PDF
The digital traces of user generated content
PPTX
About the Social Semantic Web
PDF
The Social Semantic Web
Comment viraliser les contenus de votre site grâce à l'open graph facebook
Du bon usage de l OpenGraph Facebook
Facebook open graph Presentation
Facebook open graph explained
Facebook Open Graph Protocol and Graph API (NoVA Code Camp 2010.1)
Facebook Open Graph Overview
Getting started with Facebook OpenGraph API
Gamification for Sales Reps
Community at Mobile Casinos
Introduction to Gamification
The Social Semantic Web and Linked Data
Social Semantic Web (Social Activity and Facebook)
Semantic Wiki: Social Semantic Web in Use
Facebook Open Graph API and How To Use It
Enabling reuse of arguments and opinions in open collaboration systems PhD vi...
Using Controlled Natural Language and First Order Logic to improve e-consulta...
Social Media and Scholarly Communication
The digital traces of user generated content
About the Social Semantic Web
The Social Semantic Web
Ad

Similar to Social Semantic Web on Facebook Open Graph protocol and Twitter Annotations (20)

PPT
The Semantic Web
PPT
Linked Data and Search: Thomas Steiner (Google Inc, Germany)
PPTX
"RDFa - what, why and how?" by Mike Hewett and Shamod Lacoul
PPTX
Creating Linked Data 2/5 Semtech2011
PPT
Semantic Web
PPTX
SocialOverlay : P2P Infrastructure for social Networks
PPT
Experiments in Data Portability
PPT
Challenging Web 2.0
PPT
The Semantic Web An Introduction
PPT
Semantic Search Summer School2009
PPT
Making the Web searchable
PPT
RDFa From Theory to Practice
PDF
The DiSo Project and the Open Web
PPT
Introduction to Social Bookmarking - FSI 2007
PPT
Peter Mika's Presentation at SSSW 2011
PPTX
Help your library be omnipresent without spending a
PPT
Introduction to Social Bookmarking
PPT
The Semantic Web
The Semantic Web
Linked Data and Search: Thomas Steiner (Google Inc, Germany)
"RDFa - what, why and how?" by Mike Hewett and Shamod Lacoul
Creating Linked Data 2/5 Semtech2011
Semantic Web
SocialOverlay : P2P Infrastructure for social Networks
Experiments in Data Portability
Challenging Web 2.0
The Semantic Web An Introduction
Semantic Search Summer School2009
Making the Web searchable
RDFa From Theory to Practice
The DiSo Project and the Open Web
Introduction to Social Bookmarking - FSI 2007
Peter Mika's Presentation at SSSW 2011
Help your library be omnipresent without spending a
Introduction to Social Bookmarking
The Semantic Web

More from Myungjin Lee (20)

PDF
지식그래프 개념과 활용방안 (Knowledge Graph - Introduction and Use Cases)
PDF
JSP 프로그래밍 #05 HTML과 JSP
PDF
JSP 프로그래밍 #04 JSP 의 기본
PDF
JSP 프로그래밍 #03 서블릿
PDF
JSP 프로그래밍 #02 서블릿과 JSP 시작하기
PDF
JSP 프로그래밍 #01 웹 프로그래밍
PDF
관광 지식베이스와 스마트 관광 서비스 (Knowledge base and Smart Tourism)
PDF
오픈 데이터와 인공지능
PDF
법령 온톨로지의 구축 및 검색
PDF
도서관과 Linked Data
PDF
공공데이터, 현재 우리는?
PDF
LODAC 2017 Linked Open Data Workshop
PDF
Introduction of Deep Learning
PDF
쉽게 이해하는 LOD
PDF
서울시 열린데이터 광장 문화관광 분야 LOD 서비스
PDF
LOD(Linked Open Data) Recommendations
PDF
Interlinking for Linked Data
PDF
Linked Open Data Tutorial
PPTX
Linked Data Usecases
PDF
공공데이터와 Linked open data
지식그래프 개념과 활용방안 (Knowledge Graph - Introduction and Use Cases)
JSP 프로그래밍 #05 HTML과 JSP
JSP 프로그래밍 #04 JSP 의 기본
JSP 프로그래밍 #03 서블릿
JSP 프로그래밍 #02 서블릿과 JSP 시작하기
JSP 프로그래밍 #01 웹 프로그래밍
관광 지식베이스와 스마트 관광 서비스 (Knowledge base and Smart Tourism)
오픈 데이터와 인공지능
법령 온톨로지의 구축 및 검색
도서관과 Linked Data
공공데이터, 현재 우리는?
LODAC 2017 Linked Open Data Workshop
Introduction of Deep Learning
쉽게 이해하는 LOD
서울시 열린데이터 광장 문화관광 분야 LOD 서비스
LOD(Linked Open Data) Recommendations
Interlinking for Linked Data
Linked Open Data Tutorial
Linked Data Usecases
공공데이터와 Linked open data

Recently uploaded (20)

PDF
Building Integrated photovoltaic BIPV_UPV.pdf
PDF
The Rise and Fall of 3GPP – Time for a Sabbatical?
PDF
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
PDF
Empathic Computing: Creating Shared Understanding
PDF
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
PDF
Electronic commerce courselecture one. Pdf
PDF
Unlocking AI with Model Context Protocol (MCP)
PPTX
A Presentation on Artificial Intelligence
PDF
Shreyas Phanse Resume: Experienced Backend Engineer | Java • Spring Boot • Ka...
PDF
NewMind AI Monthly Chronicles - July 2025
DOCX
The AUB Centre for AI in Media Proposal.docx
PDF
Advanced methodologies resolving dimensionality complications for autism neur...
PPTX
MYSQL Presentation for SQL database connectivity
PPT
Teaching material agriculture food technology
PDF
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
PDF
Mobile App Security Testing_ A Comprehensive Guide.pdf
PPTX
20250228 LYD VKU AI Blended-Learning.pptx
PDF
Review of recent advances in non-invasive hemoglobin estimation
PDF
Machine learning based COVID-19 study performance prediction
PDF
Chapter 3 Spatial Domain Image Processing.pdf
Building Integrated photovoltaic BIPV_UPV.pdf
The Rise and Fall of 3GPP – Time for a Sabbatical?
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
Empathic Computing: Creating Shared Understanding
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
Electronic commerce courselecture one. Pdf
Unlocking AI with Model Context Protocol (MCP)
A Presentation on Artificial Intelligence
Shreyas Phanse Resume: Experienced Backend Engineer | Java • Spring Boot • Ka...
NewMind AI Monthly Chronicles - July 2025
The AUB Centre for AI in Media Proposal.docx
Advanced methodologies resolving dimensionality complications for autism neur...
MYSQL Presentation for SQL database connectivity
Teaching material agriculture food technology
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
Mobile App Security Testing_ A Comprehensive Guide.pdf
20250228 LYD VKU AI Blended-Learning.pptx
Review of recent advances in non-invasive hemoglobin estimation
Machine learning based COVID-19 study performance prediction
Chapter 3 Spatial Domain Image Processing.pdf

Social Semantic Web on Facebook Open Graph protocol and Twitter Annotations

  • 1. Social Semantic Webon Facebook and TwitterDr. Myungjin Lee
  • 2. The webis more a social creation than a technical one. I designed it for a social effect — to help people work together — and not as a technical toy.
  • 3. The Social NetworkIn The Social Network, director David Fincher and screenwriter Aaron Sorkin explore the moment at which Facebook, the most revolutionary social phenomena of the new century, was invented -- through the warring perspectives of the super-smart young men who each claimed to be there at its inception.
  • 4. Social Webhow people socialize or interact with each otherthroughout the Webfrom Wikipedia
  • 5. the Social Attributes in the Social WebIdentityGroupsMyungjin LeeConversationsPresenceRelationshipsSharingReputation
  • 7. Market Share of VisitsMarket Share of Page Viewsfrom Hitwise.com
  • 8. Top 20 WebsitesTop 20 Social Networking Websitesfrom Hitwise.com
  • 12. Semantic Webto allow machines to understand the meaningof information on the World Wide Webfrom Wikipedia
  • 14. Distributed and Separated Data in the Social Web
  • 16. Linked Datavia dereferenceable URIs on the Webto describe a method of exposing, sharing, and connecting datafrom Wikipedia
  • 17. Vocabularies for Linking and SharingFriend of a frienda phrase used to refer to someone that one does not know well, literally, a friend of a friendFOAFSemantically-Interlinked Online Communitiesmethods for interconnecting discussion methods such as blogs, forums and mailing lists to each otherSIOCSimple Knowledge Organization System formal languages designed for representation of thesauri, classification schemes, taxonomies, subject-heading systems, or any other type of structured controlled vocabularySKOSResource Description Framework – in – attributes a W3C Recommendation that adds a set of attribute level extensions to XHTML for embedding rich metadata within Web documentsRDFaMicroformata web-based approach to semantic markup which seeks to re-use existing HTML/XHTML tags to convey metadata and other attributes in web pagesMicroformatfrom Wikipedia
  • 18. Social Semantic Web based on human contributions and participations a Web of collective knowledge systemswhich are able to provide useful information from Wikipedia
  • 19. SocialSemantic WebSIOC, DBpedia, TwineSocial WebWikis, blogs, social networksSemantic WebRDFS, OWL, SPARQLWorld Wide WebURIs, HTML, HTTPSemanticSyntax
  • 22. the global mapping of everybody and hot they are relatedSocial Graphrelationships between users of the social networking servicean abstract concept of the social networkfrom Wikipedia
  • 23. First Social Graph of Facebook in 2006is a friend ofis a friend ofis a friend ofis a friend ofMyungjin Lee
  • 24. Social Graph of Facebook with Social Object in 2010is a friend ofis a fan ofis a friend ofis a friend ofis a friend ofis a fan ofMyungjin Leehas a relationship withis a member ofSocial Object
  • 25. Social Objectthe reason two people are talking to each otherby Hugh Macleod
  • 26. Like button of Facebook
  • 27. Linking between you and outside of Facebooksimple way to share your content with friends on FacebookLikehttp://graph.facebook.com/me/likesMyungjin Lee
  • 28. Not a Web Page Anymoresimple way to share your content with friends on FacebookLikehttp://graph.facebook.com/me/likesSocial ObjectMyungjin Lee
  • 29. How to make social graph with social objects
  • 31. Open Graph Protocolenables any web pageto become a rich object in a social graphsimple technologyfrom Facebook
  • 32. Design Goals of Open Graph Protocol
  • 33. Representation Concepts of Open Graph ProtocolOne Web PageOne Social Object
  • 34. Representation Concepts of Open Graph ProtocolPropertyof Open Graph protocolLiteral ValueURIof web pagelooks like
  • 35. The Open Graph protocol is based on RDFa.
  • 36. RDFaW3C Recommendation to add a set of attribute level extensions to XHTML for embedding rich metadatawithin Web documents
  • 37. Example of RDFa in XHTML
  • 38. However, the Open Graph protocol is ...
  • 39. Use <meta> tagsin the <head> of your web page
  • 40. Example of Open Graph Protocol<html xmlns:og="http://opengraphprotocol.org/schema/" xmlns:fb="http://www.facebook.com/2008/fbml"> <head> <meta property="og:url" content="http://www.imdb.com/title/tt1285016/" /> <meta property='og:image' content='http://ia.media-imdb.com/…140_.jpg'> <meta property='og:type' content='movie' /> <meta property='fb:app_id' content='115109575169727' /> <meta property='og:title' content='The Social Network (2010)' /> <meta property='og:site_name' content='IMDb' />...
  • 41. What is needed? – Required Properties
  • 42. The canonical URL of your object that will be used as its permanent ID in the graph.A Canonical URL<meta property="og:url" content="http://www.imdb.com/title/tt1285016/" />
  • 43. The type of your object.What is the user linking?<meta property='og:type' content='movie' />Products and EntertainmentActivitiesGroupsPlacesalbum
  • 44. book
  • 45. drink
  • 46. food
  • 47. game
  • 48. movie
  • 50. song
  • 53. sport
  • 54. cause
  • 57. city
  • 62. café
  • 63. hotel
  • 69. blog
  • 71. actor
  • 77. directorThe title of your object as it should appear within the graph.A Clean Page Title<meta property='og:title' content='The Social Network (2010)' />
  • 78. An image URL which should represent your object within the graph. An Image<meta property='og:image' content='http://ia.media-imdb.com/…140_.jpg‘>
  • 79. What is desired? – Optional Properties
  • 80. A one to two sentence description of your object. A Short Description<meta property='og:description’ content='Directed by David Fincher. With Jesse Eisenberg, Andrew Garfield, Justin Timberlake, Rooney Mara. ‘>
  • 81. If your object is part of a larger web site, the name which should be displayed for the overall site. A Site Name<meta property='og:site_name' content='IMDb' />
  • 82. You can specify location via latitude and longitude, a full address, or both. To specify latitude and longitude:og:latitude and og:longitudeTo specify a human readable address: og:street-address, og:locality, og:region, og:postal-code, and og:country-nameLocation Information<meta property="og:latitude" content="37.416343" /><meta property="og:longitude" content="-122.153013" /><meta property="og:street-address" content="1601 S California Ave" /><meta property="og:locality" content="Palo Alto" /><meta property="og:region" content="CA" /><meta property="og:postal-code" content="94304" /><meta property="og:country-name" content="USA" />
  • 83. The Open Graph protocol supports the ability for you to specify contact information for your object. To specify contact informationog:email, og:phone_number, and og:fax_numberContact Information<meta property="og:email" content="me@example.com" /><meta property="og:phone_number" content="650-123-4567" /><meta property="og:fax_number" content="+1-415-123-4567" />
  • 84. Example of Open Graph Protocol<html xmlns:og="http://opengraphprotocol.org/schema/" xmlns:fb="http://www.facebook.com/2008/fbml"> <head> <meta property="og:url" content="http://www.imdb.com/title/tt1285016/" /> <meta property='og:image' content='http://ia.media-imdb.com/…140_.jpg'> <meta property='og:type' content='movie' /> <meta property='fb:app_id' content='115109575169727' /> <meta property='og:title' content='The Social Network (2010)' /> <meta property='og:site_name' content='IMDb' />...
  • 86. Social Pluginto provide engaging social experiences to your users with just a line of HTMLfrom Facebook
  • 87. Social Plugins of Facebook
  • 88. The Like button lets users share pages from your site back to their Facebook profile with one click.Like Button Plugins
  • 89. Simple Way to Insert a Like Buttonhttp://developers.facebook.com/docs/reference/plugins/like
  • 91. Sharing your content with friendsClickGraph ObjectMyungjin LeeShare
  • 92. Information based on Metadata<meta property='og:title’content='The Social Network (2010)' /><meta property='og:image' content='http://ia.media-imdb.com/…140_.jpg‘><meta property="og:description" content=" Directed by David Fincher. With Jesse Eisenberg, Andrew Garfield, Justin Timberlake, Rooney Mara. " />
  • 93. Meaning of Open Graph protocol on the Semantic Web
  • 94. Using RDF ModelPropertyof Open Graph protocolLiteral ValueURIof web pageSPO
  • 95. Mapping of Object typesObject typesProducts and EntertainmentActivitiesGroupsPlacesalbum
  • 96. book
  • 97. drink
  • 98. food
  • 99. game
  • 101. sport
  • 102. cause
  • 105. movie
  • 107. song
  • 109. city
  • 114. café
  • 115. hotel
  • 119. school
  • 121. blog
  • 123. actor
  • 125. author
  • 130. Mapping of Social Object<rdf:Propertyrdf:about="http://ogp.me/ns#type"> <rdfs:labelxml:lang="en-US">type</rdfs:label> <rdfs:seeAlsordf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#type"/> <rdfs:isDefinedByrdf:resource="http://ogp.me/ns#"/></rdf:Property>IndividualSocial Object
  • 131. Link with other Vocabularies<rdfs:Classrdf:about="http://ogp.me/ns#Actor"> <rdfs:labelxml:lang="en-US">Actor</rdfs:label> <rdfs:subClassOfrdf:resource="http://xmlns.com/foaf/0.1/Person"/> <owl:equivalentClassrdf:resource="http://dbpedia.org/resource/Actor"/> <rdfs:isDefinedByrdf:resource="http://ogp.me/ns#"/></rdfs:Class>og:Actorrdfs:subClassOfrdf:typefoaf:Personowl:equivalentClassrdf:typedb:ActorSocial Object
  • 132. How to link Open Graph to blog postsblogg.erhttp://blogg.er/2010/04/rock#postog:site_nameThe Rockog:titlesioc:abouthttp://blogg.er/2010/04/rock#moviehttp://blogg.er/2010/04/rock#moviesioc:num_repliesog:typesioc:contentmoviesioc:has_creatorog:urldc:title2Saw the Rock on TV tonight. Actually it was a lot better than I thought it would be!Rock!!!rev:hasReviewog:imagehttp://ia.media-imdb.com/images/rock.jpghttp://blogg.er/user/1og:descriptionhttp://blogg.er/2010/04/rock#reviewA group of U.S. marines, under command of a renegade general, take over Alcatraz and threat San Francisco Bay with biological weapons. A chemical weapons specialist and the only man to have ever escaped from the Rock are the only ones who can prevent chaos.rev:rating6.5
  • 134. Annotationa note that you make to yourself while you are reading information in a book, document, online record, video, software code or other informationfrom Wikipedia
  • 135. Twitter Annotationsto add one or more annotations that represent structured metadata about the tweetfrom Twitter
  • 136. The annotations feature has not been released.
  • 137. First element is a type.Every Annotations has a type.Type maps to attribute and value pair.Second element is one or more attribute names with values.How to present Annotations on a tweet
  • 139. What can we put in the Annotations?Anything you want.
  • 140. However, they published some guidelines.
  • 142. Recommend Types and Attributeswebpagereviewmovieproductcontent
  • 143. rating
  • 145. year
  • 146. brand
  • 147. model
  • 148. price
  • 154. region
  • 159. artist
  • 160. year
  • 161. genre
  • 162. album
  • 164. price
  • 165. isbn
  • 166. author
  • 168. price
  • 172. end_dateSize of Tweet140 charctersAnnotations512 bytes
  • 173. to bring more structured data to tweets to allow for better discovery of data and richer interactionsto borrow heavily from existing standardsRDFa, Microformats, Open Graph Protocol, AB Meta and Activitystrea.msThe Goal of Annotations
  • 175. Annotations types to Ontologiesfoaf:Documentowl:equivalentClassOntologyClass“webpage” typefor Annotations
  • 176. Linking into the Semantic Web
  • 180. Tim Berners-Lee, Weaving the WebWikipedia, http://www.wikipedia.orgHitwise, http://www.hitwise.comRod Smith, Big Data For Smarter Planet, https://www-927.ibm.com/ibm/cas/cascon/files/Rod%20Smith%20keynote.pdfW3C, Semantic Web, and Other Technologies to Watch, http://www.w3.org/2008/Talks/1009-bratt-W3C-SemTech/Overview.htmlAlexandre Passant and John Breslin, The Social Semantic Web, http://www.slideshare.net/Cloud/the-social-semantic-webJohn Maver and Jamie Tedford, Facebook Open Graph, http://www.slideshare.net/TechAwards2010/facebook-open-graph-61010MatteoBrunati, Facebook (Open) Graph and the Semantic Web, http://www.slideshare.net/dagoneye/facebook-open-graph-and-the-semantic-webReferences
  • 181. Hugh Macleod, Social Objects for Beginners, http://gapingvoid.com/2007/12/31/social-objects-for-beginners/The Open Graph Protocol, http://www.opengraphprotocol.org/David Recordon, The Open Graph protocol - Understanding the design decisions, http://www.scribd.com/doc/30715288/The-Open-Graph-Protocol-Design-DecisionsSocial Plugin, http://developers.facebook.com/pluginsAnnotations Overview, http://dev.twitter.com/pages/annotations_overviewAnnotations, http://www.slideshare.net/raffikrikorian/twitter-api-annotationsJoshua Shinaview and JansAasman, Real-time Semantic Web with Twitter Annotations, http://www.slideshare.net/joshsh/realtime-semantic-web-with-twitter-annotations-4606369References