add status to readme

This commit is contained in:
2014-11-19 22:00:25 +01:00
parent 6a227a7fb6
commit a0941d2a8a
3 changed files with 20 additions and 2 deletions
@@ -10,13 +10,13 @@ namespace FeedlySharp
{
public partial class FeedlyClient
{
public async Task<FeedlyUser> GetUser(CancellationToken cancellationToken = default(CancellationToken))
public async Task<FeedlyUser> GetProfile(CancellationToken cancellationToken = default(CancellationToken))
{
return await Client.Request<FeedlyUser>(HttpMethod.Get, "v3/profile", null, false, true, cancellationToken);
}
public async Task<FeedlyUser> UpdateUser(Dictionary<string, string> parameters, CancellationToken cancellationToken = default(CancellationToken))
public async Task<FeedlyUser> UpdateProfile(Dictionary<string, string> parameters, CancellationToken cancellationToken = default(CancellationToken))
{
return await Client.Request<FeedlyUser>(HttpMethod.Post, "v3/profile", parameters, true, true, cancellationToken);
}
+18
View File
@@ -8,6 +8,24 @@
---
## Status
1. ✔ Authentication / OAuth
2. ✔ Categories endpoint
3. ✔ Profile endpoint
4. ✔ Preferences endpoint
5. ✔ Tags endpoint
6. ✔ Topics endpoint
7. ✔ OPML endpoint
8. Entries endpoint
9. Feeds endpoint
10. Markers endpoint
11. Mixes endpoint
12. Search endpoint
13. Streams endpoint
14. Subscriptions endpoint
15. Social endpoint (Dropbox, Evernote, Facebook, Microsoft, Twitter)
## Supported platforms
FeedlySharp is a **Portable Class Library**, therefore it's compatible with multiple platforms and Universal Apps: