Skip to content

Commit 9938b5a

Browse files
committed
Merge branch 'master' into developer-next-groundwork
2 parents 21c99f8 + c40282f commit 9938b5a

3 files changed

Lines changed: 22 additions & 23 deletions

File tree

content/libraries.md

Lines changed: 13 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,18 @@ many flavors</h1>
1717

1818
# Third-party libraries
1919

20+
## .NET
21+
22+
* **[Octokit][octokit.net]** (officially maintained by GitHub)
23+
* [IronGithub][irongithub]
24+
* [CSharp GitHub API][csharp]
25+
* [FSharp.GitHubApi][fsharp]
26+
27+
[octokit.net]: https://github.com/octokit/octokit.net
28+
[irongithub]: https://github.com/in2bits/IronGitHub
29+
[csharp]: https://github.com/sgrassie/csharp-github-api
30+
[fsharp]: https://github.com/saxonmatt/FSharp.GitHubApi
31+
2032
## ActionScript
2133

2234
* [ActionScript GitHub API][as3]
@@ -29,20 +41,6 @@ many flavors</h1>
2941

3042
[tentacles]: https://github.com/Raynes/tentacles
3143

32-
## CSharp
33-
34-
* [CSharp GitHub API][csharp]
35-
* [IronGithub][irongithub]
36-
37-
[csharp]: https://github.com/sgrassie/csharp-github-api
38-
[irongithub]: https://github.com/in2bits/IronGitHub
39-
40-
## FSharp
41-
42-
* [FSharp.GitHubApi][fsharp]
43-
44-
[fsharp]: https://github.com/saxonmatt/FSharp.GitHubApi
45-
4644
## Emacs Lisp
4745

4846
* [gh.el][gh.el]
@@ -168,4 +166,4 @@ GitHub v3 API. Builds are available in [Maven Central](http://search.maven.org/
168166
* [Hubcat][hubcat]
169167

170168
[dispatchgithub]: https://github.com/andreazevedo/dispatch-github
171-
[hubcat]: https://github.com/softprops/hubcat
169+
[hubcat]: https://github.com/softprops/hubcat

content/v3/auth.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,22 +30,23 @@ To use Basic Authentication with the GitHub API, simply send the username and
3030
password associated with the account.
3131

3232
For example, if you're accessing the API via [cURL][curl], the following command
33-
would authenticate with `mojombo` as the username. (cURL will prompt you to
34-
enter the password.)
33+
would authenticate you if you replace `<username>` with your GitHub username.
34+
(cURL will prompt you to enter the password.)
3535

3636
<pre class='terminal'>
37-
curl -u mojombo https://api.github.com/user
37+
curl -u <username> https://api.github.com/user
3838
</pre>
3939

4040
### Via OAuth Tokens
4141

4242
Alternatively, you can authenticate using [personal access
4343
tokens][personal-access-tokens] or OAuth tokens. To do so, provide the token as
44-
the username and provide a blank password or a password of `x-oauth-basic`. For
45-
example:
44+
the username and provide a blank password or a password of `x-oauth-basic`. If
45+
you're accessing the API via cURL, replace `<token>` with your OAuth token in
46+
the following command:
4647

4748
<pre class='terminal'>
48-
curl -u 3816d821c80a6847ca84550052c1ff6246e8169b:x-oauth-basic https://api.github.com/user
49+
curl -u <token>:x-oauth-basic https://api.github.com/user
4950
</pre>
5051

5152
This approach is useful if your tools only support Basic Authentication but you

content/v3/repos/releases.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ prerelease. `false` to identify the release as a full release. Default is
8585
:tag_name => "v1.0.0",
8686
:target_commitish => "master",
8787
:name => "v1.0.0",
88-
:description => "Description of the release",
88+
:body => "Description of the release",
8989
:draft => false,
9090
:prerelease => false
9191
%>
@@ -131,7 +131,7 @@ prerelease. `false` to identify the release as a full release.
131131
:tag_name => "v1.0.0",
132132
:target_commitish => "master",
133133
:name => "v1.0.0",
134-
:description => "Description of the release",
134+
:body => "Description of the release",
135135
:draft => false,
136136
:prerelease => false
137137
%>

0 commit comments

Comments
 (0)