go-octokit icon indicating copy to clipboard operation
go-octokit copied to clipboard

Simple Go wrapper for the GitHub API

Results 12 go-octokit issues
Sort by recently updated
recently updated
newest added

Hi, trying to use this for the first time, following the first example: main.go: ```golang package main import ( "fmt" "github.com/octokit/go-octokit/octokit" ) func main() { client := octokit.NewClient(nil) url, err...

Users should not need to know how go-octokit generates hypermedia urls internally. The fact that people must provide maps with aleatory keys to those methods to call the api is...

Since the GitHub API now returns a `Labels` JSON array, adding it to the `PullRequest` struct. Should this be added to the test as well?

(Related to #119, #31, and maybe #32.) I'd love to contribute to this project (for the team-related APIs in particular), but it feels like there's a change in the overall...

@pengwynn Work in progress, but have a look to see if its going the way you want.

I see that a couple of the checkboxes in the TODO section are not checked even though they are implemented. (e.g https://github.com/octokit/go-octokit/blame/master/TODO.md#L82-L87 and https://github.com/octokit/go-octokit/blob/master/octokit/issue_comments.go) Also, with the discussion on https://github.com/octokit/go-octokit/issues/119...

@pengwynn, I'm curious what your thoughts are on using interfaces for the clients, to make it easier to fake them in unit tests? Currently I have an interface in my...

go-octokit can't get all the issues (included the closed ones), because the All() function doesn't have parameters for the query, Github api's default is to only show the open ones

Added functionality for https://developer.github.com/v3/markdown/ @pengwynn It seems like the markdown API is one of the few (only?) API endpoints that return html rather than json. However, there is no support...

needs-review