==[[mixi アプリ マイミクのリスト表示]]==
[[mixi アプリ]] |
===マイミクのリストを表示するサンプル===
<Module>
<ModulePrefs title="list_friends">
<Require [[R]]equire feature="opensocial-0.8"/>
</ModulePrefs>
<Content type="html">
// 閲覧者の友人コレクション取得要求
function request() {
var idspec = opensocial.newIdSpec({ "userId" : "VIEWERV[[IE]]WER", "groupId" : "FRIENDSFR[[IE]]NDS" }); var req = opensocial.newDataRequestnewData[[R]]equest(); req.add(req.newFetchPeopleRequestnewFetchPeople[[R]]equest(idspec), "friends");
req.send(response);
}
// 閲覧者の友人コレクション取得応答
function response(dataResponsedata[[R]]esponse) { var friends = dataResponsedata[[R]]esponse.get("friends").getData(); document.getElementById("friend_list").innerHTML inner[[HTML]] = printFriendsList(friends);
}
// 閲覧者の友人リスト表示