Skip to content

Instantly share code, notes, and snippets.

@kawahara
Created September 18, 2009 04:47
Show Gist options
  • Save kawahara/188880 to your computer and use it in GitHub Desktop.
Save kawahara/188880 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="UTF-8"?>
<Module>
<ModulePrefs title="hello world OSAPI">
<Require feature="opensocial-0.8" />
<Require feature="osapi" />
<Require feature="dynamic-height" />
</ModulePrefs>
<Content type="html"><![CDATA[
こんにちはだよ!!
<script type="text/javascript">
function init()
{
gadgets.window.adjustHeight();
osapi.people.getViewer().execute(function(result) {
alert('Your name is ' + result.displayName + '!');
});
}
gadgets.util.registerOnLoadHandler(init);
</script>
]]></Content>
</Module>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment