-
Notifications
You must be signed in to change notification settings - Fork 129
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add gist
fork_of
decoding and requests to fetch user's starred gists (
#201) * add title,forkOf fields to gist, and starred gists request * actually, dont need the title, using filenames * fix tests * fix lint errors --------- Co-authored-by: Andrew McKnight <[email protected]>
- Loading branch information
1 parent
7b15f74
commit c477602
Showing
4 changed files
with
188 additions
and
8 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
[ | ||
{ | ||
"comments" : 0, | ||
"comments_url" : "https:\/\/api.github.com\/gists\/aa5a315d61ae9438b18d\/comments\/", | ||
"commits_url" : "https:\/\/api.github.com\/gists\/aa5a315d61ae9438b18d\/commits", | ||
"created_at" : "2010-04-14T02:15:15Z", | ||
"description" : "Hello World Starred Examples", | ||
"files" : { | ||
"hello_world.rb" : { | ||
"filename" : "hello_world.rb", | ||
"language" : "Ruby", | ||
"raw_url" : "https:\/\/gist.githubusercontent.com\/octocat\/6cad326836d38bd3a7ae\/raw\/db9c55113504e46fa076e7df3a04ce592e2e86d8\/hello_world.rb", | ||
"size" : 167, | ||
"type" : "application\/x-ruby" | ||
} | ||
}, | ||
"forks_url" : "https:\/\/api.github.com\/gists\/aa5a315d61ae9438b18d\/forks", | ||
"git_pull_url" : "https:\/\/gist.github.com\/aa5a315d61ae9438b18d.git", | ||
"git_push_url" : "https:\/\/gist.github.com\/aa5a315d61ae9438b18d.git", | ||
"html_url" : "https:\/\/gist.github.com\/aa5a315d61ae9438b18d", | ||
"id" : "aa5a315d61ae9438b18d", | ||
"node_id" : "MDQ6R2lzdGFhNWEzMTVkNjFhZTk0MzhiMThk", | ||
"owner" : { | ||
"avatar_url" : "https:\/\/github.com\/images\/error\/octocat_happy.gif", | ||
"events_url" : "https:\/\/api.github.com\/users\/octocat\/events{\/privacy}", | ||
"followers_url" : "https:\/\/api.github.com\/users\/octocat\/followers", | ||
"following_url" : "https:\/\/api.github.com\/users\/octocat\/following{\/other_user}", | ||
"gists_url" : "https:\/\/api.github.com\/users\/octocat\/gists{\/gist_id}", | ||
"gravatar_id" : "", | ||
"html_url" : "https:\/\/github.com\/octocat", | ||
"id" : 1, | ||
"login" : "octocat", | ||
"node_id" : "MDQ6VXNlcjE=", | ||
"organizations_url" : "https:\/\/api.github.com\/users\/octocat\/orgs", | ||
"received_events_url" : "https:\/\/api.github.com\/users\/octocat\/received_events", | ||
"repos_url" : "https:\/\/api.github.com\/users\/octocat\/repos", | ||
"site_admin" : false, | ||
"starred_url" : "https:\/\/api.github.com\/users\/octocat\/starred{\/owner}{\/repo}", | ||
"subscriptions_url" : "https:\/\/api.github.com\/users\/octocat\/subscriptions", | ||
"type" : "User", | ||
"url" : "https:\/\/api.github.com\/users\/octocat" | ||
}, | ||
"public" : true, | ||
"truncated" : false, | ||
"updated_at" : "2011-06-20T11:34:15Z", | ||
"url" : "https:\/\/api.github.com\/gists\/aa5a315d61ae9438b18d", | ||
"user" : null | ||
} | ||
] |
This file contains 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