opensocial done right€¦ · opensocial done right implementing opensocial for 16m users bastian...

42
OpenSocial done right Implementing OpenSocial for 16m users Bastian Hofmann Montag, 31. Mai 2010

Upload: others

Post on 04-Jul-2020

19 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: OpenSocial done right€¦ · OpenSocial done right Implementing OpenSocial for 16m users Bastian Hofmann Montag, 31. Mai 2010. VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net

OpenSocial done rightImplementing OpenSocial for 16m users

Bastian Hofmann

Montag, 31. Mai 2010

Page 2: OpenSocial done right€¦ · OpenSocial done right Implementing OpenSocial for 16m users Bastian Hofmann Montag, 31. Mai 2010. VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net

VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net l meinVZ.net

2

Agenda

What is a Gadget?

What is OpenSocial?

What about privacy?

How do you integrate OpenSocial in your site?

How to enrich the user experience beyond that?

Montag, 31. Mai 2010

Page 3: OpenSocial done right€¦ · OpenSocial done right Implementing OpenSocial for 16m users Bastian Hofmann Montag, 31. Mai 2010. VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net

VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net l meinVZ.net

3

About VZ-Netzwerke

16.5 million users

40% daily logins

30 minutes per user per day

three networks

Montag, 31. Mai 2010

Page 4: OpenSocial done right€¦ · OpenSocial done right Implementing OpenSocial for 16m users Bastian Hofmann Montag, 31. Mai 2010. VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net

VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net l meinVZ.net

4

Visits April 2010 (IVW)

VZ

T-Online

MSN

Yahoo

WKW

Bild

ProSieben

SPON

0 250.000.000 500.000.000

124.266.343

133.225.524

137.471.037

168.762.246

196.320.307

254.417.174

403.820.631

440.719.168

Montag, 31. Mai 2010

Page 5: OpenSocial done right€¦ · OpenSocial done right Implementing OpenSocial for 16m users Bastian Hofmann Montag, 31. Mai 2010. VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net

VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net l meinVZ.net

5

and compared with monthly TV reach

Every VZ-Network surpasses TV inthe digital native user group (14 - 29)

Montag, 31. Mai 2010

Page 6: OpenSocial done right€¦ · OpenSocial done right Implementing OpenSocial for 16m users Bastian Hofmann Montag, 31. Mai 2010. VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net

VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net l meinVZ.net

Apps at VZ-Netzwerke

6

Launch Dec. 2009

over 14 million installations

9 million daily page impressions in canvas view

over 60 Apps in Gallery, ca. 140 Apps live

Montag, 31. Mai 2010

Page 7: OpenSocial done right€¦ · OpenSocial done right Implementing OpenSocial for 16m users Bastian Hofmann Montag, 31. Mai 2010. VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net

VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net l meinVZ.net

What is a Gadget?

XML file with HTML and JavaScript (and CSS, Images, Flash, ...)

Application based on the Google Gadgets specification

Can be included on various platforms, which support this specification

7

Montag, 31. Mai 2010

Page 8: OpenSocial done right€¦ · OpenSocial done right Implementing OpenSocial for 16m users Bastian Hofmann Montag, 31. Mai 2010. VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net

VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net l meinVZ.net

How to include gadgets?

The Gadget Server renders the Gadget XML provides the JavaScript API provides the REST (or RPC) API

Rendered result is included through an <iframe> into the parent page (Container)

8

Montag, 31. Mai 2010

Page 9: OpenSocial done right€¦ · OpenSocial done right Implementing OpenSocial for 16m users Bastian Hofmann Montag, 31. Mai 2010. VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net

VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net l meinVZ.net

Gadget Features

Gadget specification includes a rich JavaScript API with a multitude of features preferences views dynamic-height flash io ...

Extendabel

9

Montag, 31. Mai 2010

Page 10: OpenSocial done right€¦ · OpenSocial done right Implementing OpenSocial for 16m users Bastian Hofmann Montag, 31. Mai 2010. VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net

VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net l meinVZ.net

One Gadget - Different Views

Profile Canvas Preview Group Popup Integration

10

Montag, 31. Mai 2010

Page 11: OpenSocial done right€¦ · OpenSocial done right Implementing OpenSocial for 16m users Bastian Hofmann Montag, 31. Mai 2010. VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net

VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net l meinVZ.net

Example

11

<?xml version="1.0" encoding="UTF-8"?><Module> <ModulePrefs title="HelloWorld Gadget" > <Require feature="views" /> </ModulePrefs> <Content type="html" view="profile"><![CDATA[ <h1>Hello World!</h1> <a href="javascript:gadgets.views.requestNavigateTo(                            gadgets.views.getSupportedViews()['canvas'],                            {'name':'Bastian'})">go to canvas</a> ]]></Content> <Content type="html" view="canvas,popup"><![CDATA[  <h1 id="View"></h1><h1 id="Greeting"></h1> <script type="text/javascript"> gadgets.util.registerOnLoadHandler(function() { document.getElementById('View').innerHTML = 'This is the ' + gadgets.views.getCurrentView().getName() + ' view'; document.getElementById('Greeting').innerHTML = 'Hello ' + gadgets.views.getParams()['name']; });  </script> ]]></Content></Module>

Montag, 31. Mai 2010

Page 12: OpenSocial done right€¦ · OpenSocial done right Implementing OpenSocial for 16m users Bastian Hofmann Montag, 31. Mai 2010. VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net

VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net l meinVZ.net

Example

11

<?xml version="1.0" encoding="UTF-8"?><Module> <ModulePrefs title="HelloWorld Gadget" > <Require feature="views" /> </ModulePrefs> <Content type="html" view="profile"><![CDATA[ <h1>Hello World!</h1> <a href="javascript:gadgets.views.requestNavigateTo(                            gadgets.views.getSupportedViews()['canvas'],                            {'name':'Bastian'})">go to canvas</a> ]]></Content> <Content type="html" view="canvas,popup"><![CDATA[  <h1 id="View"></h1><h1 id="Greeting"></h1> <script type="text/javascript"> gadgets.util.registerOnLoadHandler(function() { document.getElementById('View').innerHTML = 'This is the ' + gadgets.views.getCurrentView().getName() + ' view'; document.getElementById('Greeting').innerHTML = 'Hello ' + gadgets.views.getParams()['name']; });  </script> ]]></Content></Module>

Montag, 31. Mai 2010

Page 13: OpenSocial done right€¦ · OpenSocial done right Implementing OpenSocial for 16m users Bastian Hofmann Montag, 31. Mai 2010. VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net

VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net l meinVZ.net

Example

11

<?xml version="1.0" encoding="UTF-8"?><Module> <ModulePrefs title="HelloWorld Gadget" > <Require feature="views" /> </ModulePrefs> <Content type="html" view="profile"><![CDATA[ <h1>Hello World!</h1> <a href="javascript:gadgets.views.requestNavigateTo(                            gadgets.views.getSupportedViews()['canvas'],                            {'name':'Bastian'})">go to canvas</a> ]]></Content> <Content type="html" view="canvas,popup"><![CDATA[  <h1 id="View"></h1><h1 id="Greeting"></h1> <script type="text/javascript"> gadgets.util.registerOnLoadHandler(function() { document.getElementById('View').innerHTML = 'This is the ' + gadgets.views.getCurrentView().getName() + ' view'; document.getElementById('Greeting').innerHTML = 'Hello ' + gadgets.views.getParams()['name']; });  </script> ]]></Content></Module>

Montag, 31. Mai 2010

Page 14: OpenSocial done right€¦ · OpenSocial done right Implementing OpenSocial for 16m users Bastian Hofmann Montag, 31. Mai 2010. VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net

VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net l meinVZ.net

Example

11

<?xml version="1.0" encoding="UTF-8"?><Module> <ModulePrefs title="HelloWorld Gadget" > <Require feature="views" /> </ModulePrefs> <Content type="html" view="profile"><![CDATA[ <h1>Hello World!</h1> <a href="javascript:gadgets.views.requestNavigateTo(                            gadgets.views.getSupportedViews()['canvas'],                            {'name':'Bastian'})">go to canvas</a> ]]></Content> <Content type="html" view="canvas,popup"><![CDATA[  <h1 id="View"></h1><h1 id="Greeting"></h1> <script type="text/javascript"> gadgets.util.registerOnLoadHandler(function() { document.getElementById('View').innerHTML = 'This is the ' + gadgets.views.getCurrentView().getName() + ' view'; document.getElementById('Greeting').innerHTML = 'Hello ' + gadgets.views.getParams()['name']; });  </script> ]]></Content></Module>

Montag, 31. Mai 2010

Page 15: OpenSocial done right€¦ · OpenSocial done right Implementing OpenSocial for 16m users Bastian Hofmann Montag, 31. Mai 2010. VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net

VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net l meinVZ.net

Example

11

<?xml version="1.0" encoding="UTF-8"?><Module> <ModulePrefs title="HelloWorld Gadget" > <Require feature="views" /> </ModulePrefs> <Content type="html" view="profile"><![CDATA[ <h1>Hello World!</h1> <a href="javascript:gadgets.views.requestNavigateTo(                            gadgets.views.getSupportedViews()['canvas'],                            {'name':'Bastian'})">go to canvas</a> ]]></Content> <Content type="html" view="canvas,popup"><![CDATA[  <h1 id="View"></h1><h1 id="Greeting"></h1> <script type="text/javascript"> gadgets.util.registerOnLoadHandler(function() { document.getElementById('View').innerHTML = 'This is the ' + gadgets.views.getCurrentView().getName() + ' view'; document.getElementById('Greeting').innerHTML = 'Hello ' + gadgets.views.getParams()['name']; });  </script> ]]></Content></Module>

Montag, 31. Mai 2010

Page 16: OpenSocial done right€¦ · OpenSocial done right Implementing OpenSocial for 16m users Bastian Hofmann Montag, 31. Mai 2010. VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net

VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net l meinVZ.net

Example

11

<?xml version="1.0" encoding="UTF-8"?><Module> <ModulePrefs title="HelloWorld Gadget" > <Require feature="views" /> </ModulePrefs> <Content type="html" view="profile"><![CDATA[ <h1>Hello World!</h1> <a href="javascript:gadgets.views.requestNavigateTo(                            gadgets.views.getSupportedViews()['canvas'],                            {'name':'Bastian'})">go to canvas</a> ]]></Content> <Content type="html" view="canvas,popup"><![CDATA[  <h1 id="View"></h1><h1 id="Greeting"></h1> <script type="text/javascript"> gadgets.util.registerOnLoadHandler(function() { document.getElementById('View').innerHTML = 'This is the ' + gadgets.views.getCurrentView().getName() + ' view'; document.getElementById('Greeting').innerHTML = 'Hello ' + gadgets.views.getParams()['name']; });  </script> ]]></Content></Module>

Montag, 31. Mai 2010

Page 17: OpenSocial done right€¦ · OpenSocial done right Implementing OpenSocial for 16m users Bastian Hofmann Montag, 31. Mai 2010. VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net

VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net l meinVZ.net

Example

11

<?xml version="1.0" encoding="UTF-8"?><Module> <ModulePrefs title="HelloWorld Gadget" > <Require feature="views" /> </ModulePrefs> <Content type="html" view="profile"><![CDATA[ <h1>Hello World!</h1> <a href="javascript:gadgets.views.requestNavigateTo(                            gadgets.views.getSupportedViews()['canvas'],                            {'name':'Bastian'})">go to canvas</a> ]]></Content> <Content type="html" view="canvas,popup"><![CDATA[  <h1 id="View"></h1><h1 id="Greeting"></h1> <script type="text/javascript"> gadgets.util.registerOnLoadHandler(function() { document.getElementById('View').innerHTML = 'This is the ' + gadgets.views.getCurrentView().getName() + ' view'; document.getElementById('Greeting').innerHTML = 'Hello ' + gadgets.views.getParams()['name']; });  </script> ]]></Content></Module>

Montag, 31. Mai 2010

Page 18: OpenSocial done right€¦ · OpenSocial done right Implementing OpenSocial for 16m users Bastian Hofmann Montag, 31. Mai 2010. VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net

VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net l meinVZ.net

Example

11

<?xml version="1.0" encoding="UTF-8"?><Module> <ModulePrefs title="HelloWorld Gadget" > <Require feature="views" /> </ModulePrefs> <Content type="html" view="profile"><![CDATA[ <h1>Hello World!</h1> <a href="javascript:gadgets.views.requestNavigateTo(                            gadgets.views.getSupportedViews()['canvas'],                            {'name':'Bastian'})">go to canvas</a> ]]></Content> <Content type="html" view="canvas,popup"><![CDATA[  <h1 id="View"></h1><h1 id="Greeting"></h1> <script type="text/javascript"> gadgets.util.registerOnLoadHandler(function() { document.getElementById('View').innerHTML = 'This is the ' + gadgets.views.getCurrentView().getName() + ' view'; document.getElementById('Greeting').innerHTML = 'Hello ' + gadgets.views.getParams()['name']; });  </script> ]]></Content></Module>

Montag, 31. Mai 2010

Page 19: OpenSocial done right€¦ · OpenSocial done right Implementing OpenSocial for 16m users Bastian Hofmann Montag, 31. Mai 2010. VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net

VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net l meinVZ.net

Example

11

<?xml version="1.0" encoding="UTF-8"?><Module> <ModulePrefs title="HelloWorld Gadget" > <Require feature="views" /> </ModulePrefs> <Content type="html" view="profile"><![CDATA[ <h1>Hello World!</h1> <a href="javascript:gadgets.views.requestNavigateTo(                            gadgets.views.getSupportedViews()['canvas'],                            {'name':'Bastian'})">go to canvas</a> ]]></Content> <Content type="html" view="canvas,popup"><![CDATA[  <h1 id="View"></h1><h1 id="Greeting"></h1> <script type="text/javascript"> gadgets.util.registerOnLoadHandler(function() { document.getElementById('View').innerHTML = 'This is the ' + gadgets.views.getCurrentView().getName() + ' view'; document.getElementById('Greeting').innerHTML = 'Hello ' + gadgets.views.getParams()['name']; });  </script> ]]></Content></Module>

Montag, 31. Mai 2010

Page 20: OpenSocial done right€¦ · OpenSocial done right Implementing OpenSocial for 16m users Bastian Hofmann Montag, 31. Mai 2010. VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net

VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net l meinVZ.net

And what is OpenSocial?

Extension of the Gadget JavaScript API

an open standard

enables gadgets to access the social graph of users

12

Montag, 31. Mai 2010

Page 21: OpenSocial done right€¦ · OpenSocial done right Implementing OpenSocial for 16m users Bastian Hofmann Montag, 31. Mai 2010. VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net

VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net l meinVZ.net

13

Montag, 31. Mai 2010

Page 22: OpenSocial done right€¦ · OpenSocial done right Implementing OpenSocial for 16m users Bastian Hofmann Montag, 31. Mai 2010. VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net

VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net l meinVZ.net

14

Montag, 31. Mai 2010

Page 23: OpenSocial done right€¦ · OpenSocial done right Implementing OpenSocial for 16m users Bastian Hofmann Montag, 31. Mai 2010. VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net

VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net l meinVZ.net

What about privacy? Example of our solution.

Visibility Visibility on a user‘s profile page can be changed individually for

friends or other people.

Communication Gadget needs user permissions for communication (Messages, Activity

Stream, Notifications, ...)

Access Access to user data is handled through a special vcard

15

Montag, 31. Mai 2010

Page 24: OpenSocial done right€¦ · OpenSocial done right Implementing OpenSocial for 16m users Bastian Hofmann Montag, 31. Mai 2010. VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net

VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net l meinVZ.net

VCards

Wile installing a gadget, the user has to assign an existing or new vcard to it

Data on vcard can differ to the user‘s profile

Gadget has only access to data of users which have installed the gadget

16

Montag, 31. Mai 2010

Page 25: OpenSocial done right€¦ · OpenSocial done right Implementing OpenSocial for 16m users Bastian Hofmann Montag, 31. Mai 2010. VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net

VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net l meinVZ.net

Implementing OpenSocial yourself

17

Reference OpenSource Implementation:Apache Shindig

Available as Java and PHP version

Gadget Container JavaScript Gadget Rendering Server OpenSocial Container JavaScript OpenSocial Data Server (REST + RPC)

Montag, 31. Mai 2010

Page 26: OpenSocial done right€¦ · OpenSocial done right Implementing OpenSocial for 16m users Bastian Hofmann Montag, 31. Mai 2010. VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net

VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net l meinVZ.net

Architecture at VZ-Netzwerke

18

Montag, 31. Mai 2010

Page 27: OpenSocial done right€¦ · OpenSocial done right Implementing OpenSocial for 16m users Bastian Hofmann Montag, 31. Mai 2010. VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net

VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net l meinVZ.net

Get the party started

19

Apache

PHP

MySQL

Shindig

Partuza

Montag, 31. Mai 2010

Page 28: OpenSocial done right€¦ · OpenSocial done right Implementing OpenSocial for 16m users Bastian Hofmann Montag, 31. Mai 2010. VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net

VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net l meinVZ.net

And that‘s all?

20

Montag, 31. Mai 2010

Page 29: OpenSocial done right€¦ · OpenSocial done right Implementing OpenSocial for 16m users Bastian Hofmann Montag, 31. Mai 2010. VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net

VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net l meinVZ.net

Connection to backend

21

Montag, 31. Mai 2010

Page 30: OpenSocial done right€¦ · OpenSocial done right Implementing OpenSocial for 16m users Bastian Hofmann Montag, 31. Mai 2010. VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net

VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net l meinVZ.net

Container logic

22

Resizing

View navigation

SecurityToken updates

Calling platform dialogs

Preferences

Montag, 31. Mai 2010

Page 31: OpenSocial done right€¦ · OpenSocial done right Implementing OpenSocial for 16m users Bastian Hofmann Montag, 31. Mai 2010. VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net

VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net l meinVZ.net

Views

23

Montag, 31. Mai 2010

Page 32: OpenSocial done right€¦ · OpenSocial done right Implementing OpenSocial for 16m users Bastian Hofmann Montag, 31. Mai 2010. VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net

VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net l meinVZ.net

Gallery, Installation Flow, ...

24

Montag, 31. Mai 2010

Page 33: OpenSocial done right€¦ · OpenSocial done right Implementing OpenSocial for 16m users Bastian Hofmann Montag, 31. Mai 2010. VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net

VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net l meinVZ.net

Sandbox

25

Montag, 31. Mai 2010

Page 34: OpenSocial done right€¦ · OpenSocial done right Implementing OpenSocial for 16m users Bastian Hofmann Montag, 31. Mai 2010. VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net

VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net l meinVZ.net

Approval process

26

Better quality

Better security

Apps are less buggy

Apps add value for the users

Better reach for individual apps

More activity in apps

Montag, 31. Mai 2010

Page 35: OpenSocial done right€¦ · OpenSocial done right Implementing OpenSocial for 16m users Bastian Hofmann Montag, 31. Mai 2010. VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net

VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net l meinVZ.net

Payment

27

Montag, 31. Mai 2010

Page 36: OpenSocial done right€¦ · OpenSocial done right Implementing OpenSocial for 16m users Bastian Hofmann Montag, 31. Mai 2010. VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net

VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net l meinVZ.net

Advertising

28

Montag, 31. Mai 2010

Page 37: OpenSocial done right€¦ · OpenSocial done right Implementing OpenSocial for 16m users Bastian Hofmann Montag, 31. Mai 2010. VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net

VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net l meinVZ.net

Viral features

29

Montag, 31. Mai 2010

Page 38: OpenSocial done right€¦ · OpenSocial done right Implementing OpenSocial for 16m users Bastian Hofmann Montag, 31. Mai 2010. VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net

VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net l meinVZ.net

Taking it one step further

30

Montag, 31. Mai 2010

Page 39: OpenSocial done right€¦ · OpenSocial done right Implementing OpenSocial for 16m users Bastian Hofmann Montag, 31. Mai 2010. VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net

VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net l meinVZ.net

Embedding

31

Montag, 31. Mai 2010

Page 40: OpenSocial done right€¦ · OpenSocial done right Implementing OpenSocial for 16m users Bastian Hofmann Montag, 31. Mai 2010. VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net

VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net l meinVZ.net

32

Doing it right

Open standards

Data privacy

Include apps wisely

Don‘t forget the developers

Montag, 31. Mai 2010

Page 41: OpenSocial done right€¦ · OpenSocial done right Implementing OpenSocial for 16m users Bastian Hofmann Montag, 31. Mai 2010. VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net

VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net l meinVZ.net

Further information ...

http://www.opensocial.org

Our blog: http://developer.studivz.net

Our wiki: http://developer.studivz.net/wiki

Become a developer and get access to our sandbox:http://www.studivz.net/Developer and http://www.meinvz.net/Developer

Or implement an OpenSocial container yourself:http://shindig.apache.org/http://code.google.com/p/partuza/

33

Montag, 31. Mai 2010

Page 42: OpenSocial done right€¦ · OpenSocial done right Implementing OpenSocial for 16m users Bastian Hofmann Montag, 31. Mai 2010. VZnet Netzwerke Ltd. l studiVZ.net l schuelerVZ.net

Thank you!

Contact:

Bastian Hofmann

[email protected]

http://www.studivz.net/bastian

http://twitter.com/BastianHofmann

Montag, 31. Mai 2010