|
2 | 2 | <feed xmlns="http://www.w3.org/2005/Atom"> |
3 | 3 | <id>http://developer.github.com/</id> |
4 | 4 | <title>GitHub API Changes</title> |
5 | | - <updated>2013-05-06T05:00:00Z</updated> |
| 5 | + <updated>2013-07-01T05:00:00Z</updated> |
6 | 6 | <link rel="alternate" href="http://developer.github.com/" /> |
7 | 7 | <link rel="self" href="http://developer.github.com/changes.atom" /> |
8 | 8 | <author> |
9 | 9 | <name>technoweenie</name> |
10 | 10 | <uri>https://github.com/technoweenie</uri> |
11 | 11 | </author> |
| 12 | + <entry> |
| 13 | + <id>tag:developer.github.com,2013-07-01:/changes/2013-07-01-feeds-api/</id> |
| 14 | + <title type="html">Feeds API</title> |
| 15 | + <published>2013-07-01T05:00:00Z</published> |
| 16 | + <updated>2013-07-01T05:00:00Z</updated> |
| 17 | + <author> |
| 18 | + <name>pengwynn</name> |
| 19 | + <uri>https://github.com/technoweenie</uri> |
| 20 | + </author> |
| 21 | + <link rel="alternate" href="http://developer.github.com/changes/2013-07-01-feeds-api/" /> |
| 22 | + <content type="html"><p>Today we’re releasing a new <a href="/v3/activity/feeds/">Feeds API</a>, an easy way to list all the Atom |
| 23 | +resources available to the authenticated user.</p> |
| 24 | + |
| 25 | +<pre class="terminal"> |
| 26 | + |
| 27 | +curl -u defunkt https://api.github.com/feeds |
| 28 | + |
| 29 | +{ |
| 30 | + "timeline_url": "https://github.com/timeline", |
| 31 | + "user_url": "https://github.com/{user}", |
| 32 | + "current_user_public_url": "https://github.com/defunkt", |
| 33 | + "current_user_url": "https://github.com/defunkt.private?token=abc123", |
| 34 | + "current_user_actor_url": "https://github.com/defunkt.private.actor?token=abc123", |
| 35 | + "current_user_organization_url": "https://github.com/organizations/{org}/defunkt.private.atom?token=abc123", |
| 36 | + "_links": { |
| 37 | + "timeline": { |
| 38 | + "href": "https://github.com/timeline", |
| 39 | + "type": "application/atom+xml" |
| 40 | + }, |
| 41 | + "user": { |
| 42 | + "href": "https://github.com/{user}", |
| 43 | + "type": "application/atom+xml" |
| 44 | + }, |
| 45 | + "current_user_public": { |
| 46 | + "href": "https://github.com/defunkt", |
| 47 | + "type": "application/atom+xml" |
| 48 | + }, |
| 49 | + "current_user": { |
| 50 | + "href": "https://github.com/defunkt.private?token=abc123", |
| 51 | + "type": "application/atom+xml" |
| 52 | + }, |
| 53 | + "current_user_actor": { |
| 54 | + "href": "https://github.com/defunkt.private.actor?token=abc123", |
| 55 | + "type": "application/atom+xml" |
| 56 | + }, |
| 57 | + "current_user_organization": { |
| 58 | + "href": "https://github.com/organizations/{org}/defunkt.private.atom?token=abc123", |
| 59 | + "type": "application/atom+xml" |
| 60 | + } |
| 61 | + } |
| 62 | +} |
| 63 | + |
| 64 | +</pre> |
| 65 | + |
| 66 | +<p>If you have any questions or feedback, <a href="https://github.com/contact?form%5Bsubject%5D=Feeds%20API">please drop us a line</a>.</p></content> |
| 67 | + </entry> |
12 | 68 | <entry> |
13 | 69 | <id>tag:developer.github.com,2013-05-06:/changes/2013-05-06-create-update-delete-individual-files/</id> |
14 | 70 | <title type="html">Create, update, and delete individual files</title> |
|
0 commit comments