public. Retrieve feed of user contributions
| Name | Type | Description |
| userid | string | either an integer user ID, "current", or "=" followed by a double uri-encoded user name |
Output (Atom): Refer to http://www.w3.org/2005/Atom
Output (Digest/Raw):
<table>
<change>
<rc_id>{int}</rc_id>
<rc_comment>{text}</rc_comment>
<rc_cur_id>{int}</rc_cur_id>
<rc_last_oldid>{int}</rc_last_oldid>
<rc_namespace>{int}</rc_namespace>
<rc_timestamp>{date}</rc_timestamp>
<rc_title>{text}</rc_title>
<rc_type>{int}</rc_type>
<rc_moved_to_ns>{int}</rc_moved_to_ns>
<rc_moved_to_title>{text}</rc_moved_to_title>
<rc_user_name>{text}</rc_user_name>
<rc_watched>{int}</rc_watched>
<rc_page_exists>{int}</rc_page_exists>
<edit_count>{int}</edit_count>
</change>
...
</table> Atom and Digest formats retrieve a compressed summary of page changes, whereas the Raw format lists each change individually.
The following code example retrieves the feed of changes by the current user:
Plug p = Plug.New("http://deki-hayes/@api/deki");
p.At("users", "authenticate").WithCredentials("admin", "password").Get();
p.At("users", "current", "feed").Get(); Sample response feed indicating that the current user edited the page called "Page Title" four times:
<feed xmlns="http://www.w3.org/2005/Atom" version="1.0" xml:lang="en-us">
<generator version="1.3.99.4871">MindTouch Dream XAtom</generator>
<updated>2007-08-29T20:12:49Z</updated>
<title type="text">Admin's contributions</title>
<link rel="self" href="http://deki-hayes/@api/deki/users/current/feed" />
<id>http://deki-hayes/@api/deki/users/current/feed</id>
<entry>
<title type="text">Page Title</title>
<published>2007-08-29T19:14:29Z</published>
<updated>2007-08-29T19:14:29Z</updated>
<id>http://deki-hayes/Page_Title</id>
<author>
<name>Admin</name>
</author>
<link href="http://deki-hayes/Page_Title" rel="alternate" />
<summary type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p>Edited 4 times by Admin (added 'myfile.jpg')</p>
<p>
<strong>2 words added, 1 words removed</strong>
</p>
<hr width="100%" size="2" />
<p>
<ins style="color: #009900;background-color: #ccffcc;text-decoration: none;">new</ins>
<del style="color: #990000;background-color: #ffcccc;text-decoration: none;">original</del>
text
<ins style="color: #009900;background-color: #ccffcc;text-decoration: none;">2</ins>
</p>
</div>
</summary>
</entry>
</feed>