Skip to content

Instantly share code, notes, and snippets.

View timtheguy's full-sized avatar
Probably drinking coffee

Tim Christovich timtheguy

Probably drinking coffee
View GitHub Profile
@timtheguy
timtheguy / hawklinkrosterscraper.js
Last active September 24, 2018 21:07 — forked from vingkan/hawklinkrosterscraper.js
Improved Roster Scraper for Campus Labs
var orgID = // Your Organization ID;
getOrganization(orgID, 1).then((initialOrg) => {
getOrganization(orgID, initialOrg.totalItems).then((fullOrg) => {
let promises = [];
fullOrg.items.forEach((item) => {
let memberID = item.account.id;
let p = getMember(memberID);
promises.push(p);
});