Skip to content

Commit

Permalink
Added support for the (freakin huge) TypePad API
Browse files Browse the repository at this point in the history
  • Loading branch information
meltingice committed Oct 20, 2010
1 parent 2fa46b0 commit f7d9789
Show file tree
Hide file tree
Showing 2 changed files with 490 additions and 4 deletions.
19 changes: 15 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,22 +23,23 @@
reddit: {},
tumblr: {
username: 'test'
}
},
typepad: {}
});

/*
jfu.ready('twitpic', function () {
this.users.show({username: 'meltingice'}, function (user) {
console.log(user);
});
});
/*
jfu.ready('facebook', function () {
this.api('/rlefevre/feed', function (resp) {
console.log(resp);
});
});
*/
jfu.ready('github', function () {
this.repos.watched({user: 'meltingice'}, function (user) {
Expand Down Expand Up @@ -103,6 +104,16 @@
console.log(posts);
});
});
*/
jfu.ready('typepad', function () {
this.api_keys.show({id:'3d20424ed60e58e1'}, function (data) {
console.log(data);
});

this.users.relationships.following.by_group({id:'6p012877b13de7970c', group: '6p012877b14c77970c'}, function (data) {
console.log(data);
});
});
</script>
</head>
<body>
Expand Down
Loading

0 comments on commit f7d9789

Please sign in to comment.