I have a pretty simple rest client I use for C#. I wrote it because I too
was dissatisfied with the other options out there. Haven't ported it to
android. Do you get dynamic support? Anyways, here's a code sample:

   var rc = new RestClient ("http://example.com/api/";);
    dynamic response = rc.Post ("login", {username: "admin", password: "pass"});
    var sessionToken = response.sessionToken;
    rc.Post ("story/1234/comments", {author: "ben", message: "this is
a comment"});
    foreach (dynamic comment in rc.Get("story/1234/comments"))
    {
        Console.WriteLine ("Author: {0}\n, Date: {1}\n, Comment:
{2}\n\n", comment.author, comment.date, comment.message);
    }


and the github:

https://github.com/bennidhamma/RestClient

On Tue, Aug 21, 2012 at 9:30 AM, Goncalo Oliveira <gonc...@minkan.net>wrote:

> Hi everyone,
>
> Has anyone found a portable REST library for usage with the client?
>
> Cheers
>
> --
> Gonçalo Oliveira
>
> _______________________________________________
> Monodroid mailing list
> Monodroid@lists.ximian.com
>
> UNSUBSCRIBE INFORMATION:
> http://lists.ximian.com/mailman/listinfo/monodroid
>
>


-- 
ben
_______________________________________________
Monodroid mailing list
Monodroid@lists.ximian.com

UNSUBSCRIBE INFORMATION:
http://lists.ximian.com/mailman/listinfo/monodroid

Reply via email to