GithubAPI icon indicating copy to clipboard operation
GithubAPI copied to clipboard

Swift implementation of Github REST API v3

Results 2 GithubAPI issues
Sort by recently updated
recently updated
newest added

```swift let authentication = AccessTokenAuthentication(access_token: GITHUB_TOKEN) RepositoriesAPI(authentication: authentication).repositories(user: "skywinder", type: .all) { (response, error) in if response != nil { print(response!) } else { print(error ?? "empty response") } sema.signal()...

``` let authentication = AccessTokenAuthentication(access_token: GITHUB_TOKEN) let ghapi = RepositoriesAPI(authentication: authentication) ghapi.get(owner: owner, repo: name, completion: { (response, error) in if response != nil { print(response!) } else { print(error...