postoditacco / friendfeed-api

Automatically exported from code.google.com/p/friendfeed-api
0 stars 0 forks source link

Updated C# Library #13

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
I have added code to the C# library to implement the /api/services API
call.  This includes the following modifications:

1.  FriendFeedClient.PublishLink: changed none to null so it will compile
2.  FriendFeedClient.ServiceList: added this method to retrieve the service
list
3.  FriendFeedClient.FetchHomeFeed(string): Changed the first parameter
from null to service so it passes the requested service properly
3.  FriendFeedClient.FetchHomeFeed(string, int): Changed the second
parameter from 0 to start so it passes the requested start position properly
4.  ServiceList: Added this class to support fetching the service list
5.  Entry.Entry: Changed Service constructor call that calls
Util.ChildElement from pulling the user data to pulling the service data

All updates have been tested with .NET 2.0 and IronPython

Original issue reported on code.google.com by jerry.he...@gmail.com on 11 Jul 2008 at 7:52

GoogleCodeExporter commented 9 years ago
And, of course, I forgot to attach the file

Original comment by jerry.he...@gmail.com on 11 Jul 2008 at 7:53

Attachments:

GoogleCodeExporter commented 9 years ago
Hi, i came across with a bug in PublishLink method at line 167:

postArguments["image" + i + "_link"] = imageUrls[i].Url;

should be as:

postArguments["image" + i + "_link"] = imageUrls[i].Link;

Original comment by barisesk...@gmail.com on 11 Oct 2009 at 11:55