Skip to content
This repository was archived by the owner on Nov 1, 2017. It is now read-only.

Commit 5f3c2fc

Browse files
committed
some fixes for the actual user api urls
1 parent bd22919 commit 5f3c2fc

2 files changed

Lines changed: 26 additions & 15 deletions

File tree

index.html

Lines changed: 19 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,11 @@ <h1>Welcome to the GitHub Developer site</h1>
4242
</div>
4343

4444
<div class="span-10">
45+
<div class='episode'>
46+
<div class="title"><a href="p/users.html">General API Info</a></div>
47+
<p>How to authenticate as a user, URL schema, secure and unsecured access and access limitations.</p>
48+
</div>
49+
4550
<div class='episode'>
4651
<div class="title"><a href="p/users.html">User API</a></div>
4752
<p>Searching users, getting user information and managing authenticated user account information.</p>
@@ -51,27 +56,28 @@ <h1>Welcome to the GitHub Developer site</h1>
5156
<div class="title">Messaging API</div>
5257
<p>Listing your messages, deleting messages and sending messages to other users.</p>
5358
</div>
54-
59+
5560
<div class='episode'>
5661
<div class="title">Gist API</div>
5762
<p>Listing your Gists, finding, editing and deleting specific Gists and creating new Gists.</p>
5863
</div>
59-
64+
6065
<div class='episode'>
61-
<div class="title">GitHub Libraries</div>
62-
<p>Libraries in various languages that make use of the GitHub API (ruby, python, perl, php).</p>
66+
<div class="title"><a href="p/network.html">Network API</a></div>
67+
<p>Listing all the data needed to draw the network graph including heads of every fork with new changes and all relevant commits. </p>
6368
</div>
69+
6470
</div>
6571

6672
<div class="span-10 prepend-1 last">
6773
<div class='episode'>
68-
<div class="title">Repository API</div>
74+
<div class="title"><a href="p/repo.html">Repository API</a></div>
6975
<p>Searching repositories, getting repository information and managing repository information for authenticated users.</p>
7076
</div>
7177

7278
<div class='episode'>
73-
<div class="title">Commit API</div>
74-
<p>Getting information on specfic commits, the diffs they introduce, the files they've changed. Also listing associated comments, adding new comments and removing comments.</p>
79+
<div class="title"><a href="p/commit.html">Commit API</a></div>
80+
<p>Getting information on specfic commits, the diffs they introduce, the files they've changed.</p>
7581
</div>
7682

7783
<div class='episode'>
@@ -81,7 +87,12 @@ <h1>Welcome to the GitHub Developer site</h1>
8187

8288
<div class='episode'>
8389
<div class="title">Download API</div>
84-
<p>Adding new files to your Download area, listing files in your download area, downloading archives and existing Download area files.</p>
90+
<p>Adding new files to your Download area, listing files in your download area, downloading archives.</p>
91+
</div>
92+
93+
<div class='episode'>
94+
<div class="title">GitHub Libraries</div>
95+
<p>Libraries in various languages that make use of the GitHub API (ruby, python, perl, php).</p>
8596
</div>
8697

8798
</div>

pages/users.markdown

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ The route for user searching is:
1212

1313
For instance, you would search for users with 'chacon' in thier name like this:
1414

15-
$ curl -i http://github.com/api/v2/xml/users/search/chacon
15+
$ curl -i http://github.com/api/v2/xml/user/search/chacon
1616

1717
### Getting User Information ###
1818

@@ -88,22 +88,22 @@ If you are authenticated as a user, you can also follow or unfollow users with:
8888

8989
/user/unfollow/:user [POST]
9090

91+
9192
#### Public Key Management ####
9293

93-
/user/public_keys
94+
/user/keys
9495

95-
/user/public_key/add [POST]
96+
/user/key/add [POST]
9697
:name
9798
:key
9899

99-
/user/public_key/remove [POST]
100+
/user/key/remove [POST]
100101
:id
101102

102103
#### Email Address Management ####
103104

104105
/user/emails [GET]
105106

106-
/user/email/add/:email [POST]
107-
108-
/user/email/remove/:email [POST]
107+
/user/email/add [POST]
109108

109+
/user/email/remove [POST]

0 commit comments

Comments
 (0)