SlideShare a Scribd company logo
1 of 65
Social Design
                                 @matclayton




Wednesday, November 9, 2011
What is Social?
                              why is social so effective?




Wednesday, November 9, 2011
Recommend me a film

Wednesday, November 9, 2011
Wednesday, November 9, 2011
Wednesday, November 9, 2011
Wednesday, November 9, 2011
Wednesday, November 9, 2011
Wednesday, November 9, 2011
Wednesday, November 9, 2011
Stars and Reviews




Wednesday, November 9, 2011
The Social Graph



Wednesday, November 9, 2011
Wednesday, November 9, 2011
Wednesday, November 9, 2011
Wednesday, November 9, 2011
Wednesday, November 9, 2011
Open Graph




Wednesday, November 9, 2011
Wednesday, November 9, 2011
Wednesday, November 9, 2011
Open Graph Tags




Wednesday, November 9, 2011
http://developers.facebook.com/tools/lint/




Wednesday, November 9, 2011
Tag Tips
             • Open graph tags on objects not actions.
             • “Secret” admin panel
             • DO NOT USE the “article” type
             • make sure to add fb:admins for insights
                  and admin panel

             • Open graph pages can post to users



Wednesday, November 9, 2011
Wednesday, November 9, 2011
Creating Edges
                       Like, Send, Share, Requests 2.0




Wednesday, November 9, 2011
Like




Wednesday, November 9, 2011
Code
                 <fb:like href="..." ref="my_ref"></fb:like>

                     <div id="fb-root"></div>
                     <script>
                      (function() {
                            window.fbAsyncInit = function() {
                               FB.Event.subscribe('edge.create', function(response) {
                                     _gaq.push(['_trackSocial', 'facebook', 'like', response]);
                               });
                               FB.Event.subscribe('edge.remove', function(response) {
                                     _gaq.push(['_trackSocial', 'facebook', 'unlike', response]);
                               });
                            };
                        var e = document.createElement('script'); e.async = true;
                        e.src = document.location.protocol +
                          '//connect.facebook.net/en_US/all.js#xfbml=1';
                        document.getElementById('fb-root').appendChild(e);
                      }());
                     </script>




Wednesday, November 9, 2011
Like Tips
     • Use XFBML not iFrames
          • Higher weighting
          • Commenting/cleaner ui
     • Don’t use the demo code, it blocks
     • Point the url to the creation object not the current page
          • Aggregates likes to onto single object
          • Create a good reason to post new updates to user
     • Track them! In Insights + Google Analytics
     • Touch point for FB signup

Wednesday, November 9, 2011
Bonus Tip: Demographic tracking




Wednesday, November 9, 2011
Send




Wednesday, November 9, 2011
Code

  <fb:like href="..." send=”true” ref="my_ref"></fb:like>

                     <div id="fb-root"></div>
                     <script>
                      (function() {
                            window.fbAsyncInit = function() {
                               FB.Event.subscribe('message.send', function(response) {
                                     _gaq.push(['_trackSocial', 'facebook', 'send', response]);
                               });
                            };
                        var e = document.createElement('script'); e.async = true;
                        e.src = document.location.protocol +
                          '//connect.facebook.net/en_US/all.js#xfbml=1';
                        document.getElementById('fb-root').appendChild(e);
                      }());
                     </script>




Wednesday, November 9, 2011
Wednesday, November 9, 2011
Send Tips


     • Dont expect good results....... yet, maybe in time
     • Users still don’t understand it.
     • CTR’s are low
     • No fan out distribution effect
     • :(




Wednesday, November 9, 2011
Share




Wednesday, November 9, 2011
FB.ui() - Feed




Wednesday, November 9, 2011
<script>
    FB.ui({
         method: 'feed',
                                 Code
         message: 'Come checkout Laid back radio',
         name: 'Laid Back',
         caption: 'on Mixcloud',
         description: ‘Laid back is an internet medium...’,
         link: 'http://www.mixcloud.com/laidbackradio/’,
         picture: 'http://mixcloud.com/lb.jpg',
         actions: [
             { name: 'mixcloud', link: 'http://www.mixcloud.com/' }
         ]
    },function(response) {
         if (response && response.post_id) {
            _gaq.push(['_trackSocial', 'facebook',
  'share', response]);
        }
    });
  </script>




Wednesday, November 9, 2011
Feed Dialog Tips
             • Stop using sharer.php
             • Fb.ui works for logged out users as well
             • Dont include action link(s)
             • Share objects not actions
                  • users more likely to add message
             • Touch point for FB Connect signup
             • Can directly post to another users wall

Wednesday, November 9, 2011
Edge Rank
                        News Feed Optimization (NFO)




Wednesday, November 9, 2011
Wednesday, November 9, 2011
News Feed Optimization

         • Create engaging content, encourage likes/
              shares/comments

         • Increase affinity between users (Friend
              Dialog)

         • Create > Share > Comment > Like
         • Reduce time period of activity


Wednesday, November 9, 2011
Social Analytics



Wednesday, November 9, 2011
www.facebook.com/insights




Wednesday, November 9, 2011
Engagement




Wednesday, November 9, 2011
Analytics - Social Actions




Wednesday, November 9, 2011
Analytics - Social Actions




Wednesday, November 9, 2011
Analytics - Social Actions




Wednesday, November 9, 2011
Facebook Platform
                 identify, distribution and community




Wednesday, November 9, 2011
1. Authenticate
                              identity + permissions




Wednesday, November 9, 2011
User targetting

         FB.getLoginStatus(function (response) {
             if (response.status=='connected') {
                 // Auto log the user in
             } else if (response.status=='notConnected') {
                 // Signup with Facebook Dialog
             }
         });




Wednesday, November 9, 2011
Permissions




Wednesday, November 9, 2011
Wednesday, November 9, 2011
2. Personalize
                                add social context




Wednesday, November 9, 2011
Wednesday, November 9, 2011
Wednesday, November 9, 2011
Wednesday, November 9, 2011
Artfinder.com




Wednesday, November 9, 2011
Artfinder.com




Wednesday, November 9, 2011
iFrame
             <iframe src="http://www.facebook.com/plugins/activity.php?
             site=mixcloud.com&amp;width=300&amp;height=300&amp;header=tr
             ue&amp;colorscheme=light&amp;font&amp;border_color&amp;recom
             mendations=false" scrolling="no" frameborder="0" style="border:none;
             overflow:hidden; width:300px; height:300px;"
             allowTransparency="true"></iframe>



        XFBML
            <fb:activity site="mixcloud.com" width="300" height="300"></fb:activity>




Wednesday, November 9, 2011
3. Drive Distribution
              make it easy to share / contribute back




Wednesday, November 9, 2011
Touch points
                     key moments in the user journey




Wednesday, November 9, 2011
Wednesday, November 9, 2011
Offsite touch points




Wednesday, November 9, 2011
Advanced FB targetting

         FB.getLoginStatus(function (response) {
             if (response.status=='connected') {
                 // Auto log the user in
             } else if (response.status=='notConnected') {
                 // Signup with Facebook Dialog
             }
         });




Wednesday, November 9, 2011
Wednesday, November 9, 2011
Customize landing page




Wednesday, November 9, 2011
Wednesday, November 9, 2011
Please get in touch
 Weʼre keen to hear your thoughts

 Email: mat@mixcloud.com
 Twitter: @matclayton / @mixcloud
 Code: https://gist.github.com/975939
Wednesday, November 9, 2011

More Related Content

Viewers also liked (7)

Antena wifi biquad 11
Antena wifi biquad 11Antena wifi biquad 11
Antena wifi biquad 11
 
Kpcb internet trends 2012
Kpcb internet trends 2012Kpcb internet trends 2012
Kpcb internet trends 2012
 
Мой вебинар в мае 2012 по ментальным установкам
Мой вебинар в мае 2012 по ментальным установкамМой вебинар в мае 2012 по ментальным установкам
Мой вебинар в мае 2012 по ментальным установкам
 
Clase uapa
Clase uapaClase uapa
Clase uapa
 
Выступление на конференции
Выступление на конференцииВыступление на конференции
Выступление на конференции
 
Pengenalan PHP
Pengenalan PHPPengenalan PHP
Pengenalan PHP
 
金沢∞景プロジェクト
金沢∞景プロジェクト金沢∞景プロジェクト
金沢∞景プロジェクト
 

Similar to Social design (Seattle 09-2011)

MozCon Seattle 2011 - Social Design
MozCon Seattle 2011 - Social DesignMozCon Seattle 2011 - Social Design
MozCon Seattle 2011 - Social Design
Mat Clayton
 
Generating Print Sales Leads with LinkedIn session 1
Generating Print Sales Leads with LinkedIn session 1Generating Print Sales Leads with LinkedIn session 1
Generating Print Sales Leads with LinkedIn session 1
Joe Kern
 
jQuery Mobile Hour 4
jQuery Mobile Hour 4jQuery Mobile Hour 4
jQuery Mobile Hour 4
Gene Babon
 
Simon Cross - Facebook Mobile, First - Geomob Feb 2011
Simon Cross -  Facebook Mobile, First - Geomob Feb 2011Simon Cross -  Facebook Mobile, First - Geomob Feb 2011
Simon Cross - Facebook Mobile, First - Geomob Feb 2011
GeomobLDN
 
jQuery Mobile Hour 4
jQuery Mobile Hour 4jQuery Mobile Hour 4
jQuery Mobile Hour 4
Gene Babon
 
Conquistando el Servidor con Node.JS
Conquistando el Servidor con Node.JSConquistando el Servidor con Node.JS
Conquistando el Servidor con Node.JS
Caridy Patino
 
Community management
Community managementCommunity management
Community management
Paul Bradshaw
 
Heidi Harman_UiA Seminar on Virtual Worlds
Heidi Harman_UiA Seminar on Virtual WorldsHeidi Harman_UiA Seminar on Virtual Worlds
Heidi Harman_UiA Seminar on Virtual Worlds
Robin Teigland
 

Similar to Social design (Seattle 09-2011) (20)

Online journalism: thinking about platforms
Online journalism: thinking about platformsOnline journalism: thinking about platforms
Online journalism: thinking about platforms
 
MozCon Seattle 2011 - Social Design
MozCon Seattle 2011 - Social DesignMozCon Seattle 2011 - Social Design
MozCon Seattle 2011 - Social Design
 
CSS Power Tools
CSS Power ToolsCSS Power Tools
CSS Power Tools
 
Generating Print Sales Leads with LinkedIn session 1
Generating Print Sales Leads with LinkedIn session 1Generating Print Sales Leads with LinkedIn session 1
Generating Print Sales Leads with LinkedIn session 1
 
jQuery Mobile Hour 4
jQuery Mobile Hour 4jQuery Mobile Hour 4
jQuery Mobile Hour 4
 
Simon Cross - Facebook Mobile, First - Geomob Feb 2011
Simon Cross -  Facebook Mobile, First - Geomob Feb 2011Simon Cross -  Facebook Mobile, First - Geomob Feb 2011
Simon Cross - Facebook Mobile, First - Geomob Feb 2011
 
Javascript - How to avoid the bad parts
Javascript - How to avoid the bad partsJavascript - How to avoid the bad parts
Javascript - How to avoid the bad parts
 
Social Design - ProSEO
Social Design - ProSEOSocial Design - ProSEO
Social Design - ProSEO
 
Brian Hogg - Web Apps using HTML5 and JS
Brian Hogg - Web Apps using HTML5 and JSBrian Hogg - Web Apps using HTML5 and JS
Brian Hogg - Web Apps using HTML5 and JS
 
jQuery Mobile Hour 4
jQuery Mobile Hour 4jQuery Mobile Hour 4
jQuery Mobile Hour 4
 
Caridy patino - node-js
Caridy patino - node-jsCaridy patino - node-js
Caridy patino - node-js
 
Conquistando el Servidor con Node.JS
Conquistando el Servidor con Node.JSConquistando el Servidor con Node.JS
Conquistando el Servidor con Node.JS
 
A Look at the Future of HTML5
A Look at the Future of HTML5A Look at the Future of HTML5
A Look at the Future of HTML5
 
The Contextual Experience of the Mobile Web
The Contextual Experience of the Mobile WebThe Contextual Experience of the Mobile Web
The Contextual Experience of the Mobile Web
 
Building Mobile Apps in WordPress - WordCamp Toronto 2011
Building Mobile Apps in WordPress - WordCamp Toronto 2011Building Mobile Apps in WordPress - WordCamp Toronto 2011
Building Mobile Apps in WordPress - WordCamp Toronto 2011
 
Community management
Community managementCommunity management
Community management
 
Tech toolbox for teachers
Tech toolbox for teachersTech toolbox for teachers
Tech toolbox for teachers
 
Heidi Harman_UiA Seminar on Virtual Worlds
Heidi Harman_UiA Seminar on Virtual WorldsHeidi Harman_UiA Seminar on Virtual Worlds
Heidi Harman_UiA Seminar on Virtual Worlds
 
So what's a web app? introduction to the chrome web store
So what's a web app? introduction to the chrome web storeSo what's a web app? introduction to the chrome web store
So what's a web app? introduction to the chrome web store
 
Writing jQuery that doesn't suck - London jQuery
Writing jQuery that doesn't suck - London jQueryWriting jQuery that doesn't suck - London jQuery
Writing jQuery that doesn't suck - London jQuery
 

Recently uploaded

The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
heathfieldcps1
 
Salient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsSalient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functions
KarakKing
 

Recently uploaded (20)

Jamworks pilot and AI at Jisc (20/03/2024)
Jamworks pilot and AI at Jisc (20/03/2024)Jamworks pilot and AI at Jisc (20/03/2024)
Jamworks pilot and AI at Jisc (20/03/2024)
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
 
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17
 
How to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptxHow to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptx
 
SOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning PresentationSOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning Presentation
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
 
Food safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfFood safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdf
 
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
 
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdf
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdfUnit 3 Emotional Intelligence and Spiritual Intelligence.pdf
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdf
 
Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdf
 
How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17
 
Salient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsSalient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functions
 
Interdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptxInterdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptx
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdf
 
Spatium Project Simulation student brief
Spatium Project Simulation student briefSpatium Project Simulation student brief
Spatium Project Simulation student brief
 
On National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsOn National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan Fellows
 
REMIFENTANIL: An Ultra short acting opioid.pptx
REMIFENTANIL: An Ultra short acting opioid.pptxREMIFENTANIL: An Ultra short acting opioid.pptx
REMIFENTANIL: An Ultra short acting opioid.pptx
 
ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 

Social design (Seattle 09-2011)

Editor's Notes

  1. \n
  2. \n
  3. Search is about finding answers\n\n2 types of questions \nFactual\nSubjective\n\nSearch solves factual, but not subjective.\n\nUsers often have subjective questions, like Recommend me a film, this is what social excels at.\n\nWhen a computer cant answer a question, turn to friends.\n
  4. Eric Fisher, Facebook Social Design Strategist\n\nRelationships can be broken down to 2 axis.\n\nFriends and family in the trust area\n\nBrands and people like the pizza boy live bottom left, least trust.\n\nWe need a way to bring the &amp;#x201C;brand&amp;#x201D; into the top right and this is what social design achieves/enables.\n
  5. Circle of trust, top right quadrant\n\nFriends and Family vouch for others and they enter the circle of trust\n\n\n
  6. I&amp;#x2019;ve been staying with a close friend in Seattle the last few days. But during the day she was at work, so I needed to go out and explore, \n\nFriend recommendations out weigh unknown third parties.\n\nThey know and understand you, personalisation goes a long way.\n\n&amp;#x201C;This place is awesome (local knowledge) you should go&amp;#x201D;, &amp;#x201C;skip that, you&amp;#x2019;ll hate it&amp;#x201D;\n\nEvents like this happen Millions of times a day already on Social networks and you need to figure out how to ride the wave.\n
  7. Social networking sites have 3 key parts\n\n1. Identity, this includes not only your &amp;#x201C;profile&amp;#x201D; but any badges/awards/points the whole eccosystem\n2. Communication\n3. Community \n
  8. Communication is often misunderstood\n\nMost assume its distribution, and SHOUTING..... its not its a two way street\n
  9. Consumption is a massive driver of retention... always overlooked, (sharkfin)\n\nBut also strangely you see the following...\n\nDistribution drives consumption, but also consumption drives distribution = Growth + Retention increase\n\n\n
  10. We have been through this consume/create (review) cycle before, with reviews.\n\nWho are these people?\nThey don&amp;#x2019;t know me?\nDo we share the same interests?\n\nLike is one example of an attempt to solve this issue, by focussing on the top right quadrant or trust, engaging the user\n
  11. \n
  12. \n
  13. \n
  14. \n
  15. \n
  16. \n
  17. Its not just photos the social graph includes - Events, groups, applications everything in the eccosystem.\n
  18. \n
  19. \n
  20. Lets add a new type of node.... a webpage..... (or domain)\n
  21. like it, this is what the &amp;#x201C;like&amp;#x201D; button does internally within the graph\n
  22. Define the &amp;#x201C;object&amp;#x201D;\n\nTitle and image&amp;#x2019;s lock after 10? likes (images and title)\n\nIf you are debating SOCIAL put these tags on your site and start checking out insights straight away, see if there is anyone already sharing your content.\n\nRequired. title, type, image, url.... just for FB ensure you have site and fb:admins as well\n\nembedding flash to or not depends on what you want to optimize for.\n\nTOP TIP, never use # in urls, it buggers up insights totally. \n\nOfficial line is they will all be merged, I&amp;#x2019;m pretty sure it just dumps them entirely, do some tests.\n\nAlso #! urls work as well (google ajax crawling spec) but dont do that its bad for everyone, pjax it up :)\n\n
  23. Facebook linter, good at spotting tagging issues, things like duplicates can throw a real spanner in the works.\n\nFlush the FB cache with it, for example if you have uploaded the wrong image\n\nCan also be done programatically\n
  24. There was this trend of publishing/liking actions for a long time this does not work, people don&amp;#x2019;t reshare/like that\n\nArticle, blocked posting to the &amp;#x201C;page&amp;#x201D; so dont use it.\n\nfb:admin fb:app_id\n\nMake sure you have a favicon as well.\n
  25. \n
  26. \n
  27. Like objects not actions\n\nobjects produce content = returning users\n\nEvery new like adds another page to the graph, its better to keep a small set with lots of likes than spreading them out. Having said that we now manage 100,000 pages\n\n\n\n
  28. Default code examples are synchronous, the block horribly. Use this example to do async + GA tracking of events\n\niFrame version a second class citizen\n\n
  29. remember those admin tags..... now goto www.facebook.com/insights/ and we can start getting to the real data.\n
  30. \n
  31. Using Like buttons to track demographics,\n\nYou can either hide them, or make them public. Hiding will screw the stats.\n
  32. \n
  33. Default code examples are synchronous, use this example to do async + GA tracking of events\n
  34. \n
  35. \n
  36. effective for invite mechanics...\n\nWho actually runs these?\n
  37. \n
  38. Remember that you can post as a brand as well\n\nComment order is important, (friends show up at the top)\n\n
  39. Ditch sharer.php, legacy\n\nhttp://www.facebook.com/sharer.php?u=url&amp;t=title\n
  40. Ditch sharer.php, legacy\n\nhttp://www.facebook.com/sharer.php?u=url&amp;t=title\n
  41. actions is a historical bug, but you can only have one action, and you shouldn&amp;#x2019;t because it removes the ahre option.\n
  42. \n
  43. No action links\n\nFocus on objects and allow the user to define the reason in the messaging.\n\nAwesome touch point for signup\n\nIf you want to do more advanced integrations it is possible. For example you can target specific users but you need to get the uid first, good for invites....\n
  44. \n
  45. Screen grab from F8 2010 Session\n
  46. Time is probably your best bet here, focus on adding more content to recent edges, not old ones.\n\nIf you release new content, drive engagement quickly, don&amp;#x2019;t do it over a long period\n\naggregating edges onto a single object. \n
  47. \n
  48. Realtime, so ignore the last day drop off (has stalled a few times) \n\nNote share is way more effective than like.\n\nLike x326 CTR 0.2%\nShare x645 CTR 0.9%\n\nLet me know what you guys are seeing, no one is publishing this data, we openly share and to date we are way above average.\n\n
  49. Social engaged users are happy users :)\n\n46mins average time on site! This is certainly biased, however we aim to transition users from not engaged to engaged.\n
  50. Breakdown by type.\n\nGoogle now accounts for 16% of our Social Actions! not bad for month 1, maybe its a fad, but seems to be increasing\n
  51. Breakdown by type.\n\nGoogle now accounts for 16% of our Social Actions! not bad for month 1, maybe its a fad, but seems to be increasing\n
  52. \n
  53. \n
  54. Its a known active area of work.\n
  55. Maybe a Geo element as well &amp;#x201C;Cambourne runners&amp;#x201D; is local to me, or could be minimal distance across graph.\n\nThe other key thing to remember with search at FB is that this is in very active development, and results change frequently.\n\nI can&amp;#x2019;t login to our analytics clusters from here, but last time I checked search aren&amp;#x2019;t important at all.... fb_source=search is seen in referrer\n\n\n
  56. \n
  57. Use personal information to kick start the social experience.\n\nUse things like Facepile to increase signup\n
  58. Auto login to ensure minimal effort on the users part. This will take a while to fine turn, and will confuse users for a while, until you perfect the UI. \n\n\n
  59. Do not ask for too many! 3% drop per permission, bullshit. \n\nMy tip is ask for email, so you can manage the user. (proxy emails don&amp;#x2019;t happen that often, although its a possibility)\n\nWe just ask for email, offline_access and stream_publish, and are considering dropping offline_access shortly.\n\nManaging deleted access_token is a pain (realtime helps a lot), changing a password also deletes the access_token. Do not depend on them, learn to adapt when they change\n\n\n
  60. OAuth 2.0 + FB JS Kit only\n\nUse the Facepile Social Plugin\n\nOfficial Facebook line is that each permission causes a CTR drop of about 3% (massive Standard deviation though)\nHowever I dont agree, asking for email caused a 5% increase in CTR...\n
  61. The on-ramp is crucial, get this right and everything follows.\n\nConsider your core pages, what are they. For us. Content/Profiles and soon player. Can you Socialize these? \n\nWhat are your landing pages, can you Socialize even before signup. Aim for the initial touch point\n\nEnsure Social Context through out the entire experience.\n
  62. \n
  63. Of 6,981 people listening, it isn&amp;#x2019;t a coincidence that Rob is showing up.....\n\nWe go to great lengths to track relationships, either those you follow directly, or friends on other sites...\n\nWorse case we can post to FB with a tainted link and either know your id or who posted it, and from that do indirect targeting, its still better than none\n\nDrive retention/engagement through adding social context, this increases the CTR of the play, and also the share rate and viral factor of the pages significantly.\n\nCreate all content as close as possible in social context to the user, aim for the top right quadrant.\n\nFACES ARE KEY, not NAMES.\n
  64. Nikhil mentioned on the left (out of 1000 friends)\n\nNico was at out with Rawson (other hidden friends I dont know)\n
  65. Social plugins can even do this when you aren&amp;#x2019;t authenticated... first page, are you likely to sign up now? What do you think we did to the bounce rate, conversions? \n
  66. Social plugins can even do this when you aren&amp;#x2019;t authenticated... first page, are you likely to sign up now? What do you think we did to the bounce rate, conversions? \n
  67. \n
  68. Grow in narrow niches first, keeps concentration higher and increases the &amp;#x201C;community&amp;#x201D; density\n\nMake it EASY to share and give back (lots of AJAX) to the community.\n
  69. Touch points\n\nconsider your key actions both on and off your site. What actions do your users do which suggests increased engagement.\n\nFor both your own actions, signup after share/like? you can track and count these. If someone likes your content 10 times they &amp;#x201C;might&amp;#x201D; be a good candidate for signing up.\n\nAlso if they just listening or read an article will they share? You can force these things but if you pick your timing smartly you can win big.\n
  70. Touch points include\n\nShare, Tweet, like, +1, Follow, Comment, Play, embed\n
  71. \n
  72. Auto login to ensure minimal effort on the users part. This will take a while to fine turn, and will confuse users for a while, until you perfect the UI. \n\n\n
  73. Social context - A friend has just recommend the item (come from newsfeed), they land on our site, already signed into FB (we check in JS), this is one of our key touch points.\n\nNote the use of FacePile, this associates friends alongside the action of &amp;#x201C;Connecting&amp;#x201D;\n\nBiggest issue with this is that users don&amp;#x2019;t fully understand &amp;#x201C;Connect&amp;#x201D; with Facebook and that they are creating an account.\n\nGuess what this did to the bounce rate?\n\n\n
  74. 55% reduction in bounce for FB users (38%-&gt;17% bounce rate, for FB traffic)\n\n15min time on site\n\n80% increase in signup rate\n\nBiggest shift in site usage to date.\n
  75. \n
  76. Contact details\n