Created
May 30, 2012 15:17
-
-
Save christianchristensen/2836936 to your computer and use it in GitHub Desktop.
AllPlayers.com API via cURL - get all my users groups (note: depends on "jsonpretty")
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
curl -L -b cjar https://www.allplayers.com/api/v1/rest/users/current/groups.json | jsonpretty | grep uuid | cut -f4 -d'"' | xargs -n1 -I{} echo "curl -bcjar https://www.allplayers.com/api/v1/rest/groups/{}.json?fields=uuid,title,external_id,groups_above_uuid | jsonpretty" | sh |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"groups_above_uuid": [ | |
], | |
"uuid": "429401e0-8f07-11e1-bfe3-12313d2a2278", | |
"title": "APDemo" | |
} | |
{ | |
"uuid": "e134f484-8f08-11e1-bfe3-12313d2a2278", | |
"groups_above_uuid": [ | |
"b2d4c1e6-8f08-11e1-bfe3-12313d2a2278" | |
], | |
"external_id": "qs_58109_2562218", | |
"title": "Team 4" | |
} | |
{ | |
"external_id": "qs_58109_2562216", | |
"title": "Team 2", | |
"uuid": "dd20dda4-8f08-11e1-bfe3-12313d2a2278", | |
"groups_above_uuid": [ | |
"b2d4c1e6-8f08-11e1-bfe3-12313d2a2278" | |
] | |
} | |
{ | |
"uuid": "de8eee2e-8f08-11e1-bfe3-12313d2a2278", | |
"groups_above_uuid": [ | |
"b2d4c1e6-8f08-11e1-bfe3-12313d2a2278" | |
], | |
"external_id": "qs_58109_2562217", | |
"title": "Team 3" | |
} | |
{ | |
"title": "Team 1", | |
"external_id": "qs_58109_2562213", | |
"groups_above_uuid": [ | |
"b2d4c1e6-8f08-11e1-bfe3-12313d2a2278" | |
], | |
"uuid": "dbb65282-8f08-11e1-bfe3-12313d2a2278" | |
} | |
{ | |
"external_id": "qs_58109_9", | |
"title": "Summer 2012 - Badminton", | |
"groups_above_uuid": [ | |
"429401e0-8f07-11e1-bfe3-12313d2a2278" | |
], | |
"uuid": "b1444da6-8f08-11e1-bfe3-12313d2a2278" | |
} | |
{ | |
"external_id": "qs_58109_345151", | |
"uuid": "b2d4c1e6-8f08-11e1-bfe3-12313d2a2278", | |
"groups_above_uuid": [ | |
"b1444da6-8f08-11e1-bfe3-12313d2a2278" | |
], | |
"title": "Badminton League" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment