add status to readme
This commit is contained in:
@@ -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);
|
||||
}
|
||||
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user