api calls

This commit is contained in:
Jeena Paradies 2013-05-26 09:51:01 +02:00
parent 422dbd34ff
commit f73ce7d196
10 changed files with 371 additions and 86 deletions

View file

@ -40,12 +40,12 @@ function(URI, CacheStorage, require) {
}
}
var url = URI(require("helper/Paths").mkApiRootPath("/followings"));
var url = URI(require("helper/APICalls").mkApiRootPath("/followings"));
if (this.followings_before_id) {
url.addSearch("before_id", this.followings_before_id);
}
require("helper/Paths").getURL(url, "GET", callback);
require("helper/APICalls").getURL(url, "GET", callback);
}
Cache.prototype.periodicallyGetFollowings = function() {