Install

Install-Package RestSharp

(or download)

Documentation

Get Started - All

Contributions welcome!

Discuss

RestSharp Google Group

Help and feature requests

Stay Updated

Follow @RestSharp

Subscribe to the RSS feed

How important is Windows Phone 7 and Silverlight support to you?

Since I have limited time to dedicate to RestSharp, I find it hard to get motivated to support things I don’t use like Windows Phone 7 and Silverlight. Is support for these platforms important to you? Are you currently using RestSharp with SL or WP7? Please answer in the comments.

To be clear, no decision has been made, I just want some data to help set priorities.

Posted August 16th, 1:41 AM
Read more posts about Announcements.

22 Comments - Join The Discussion
Link

  • http://twitter.com/4MKMobile 4MK Mobile

    Not sure about others, but it was invaluable for me when working with the Twilio API.

  • James

    I think oauth support is more important to me.

  • j_medero

    Right now I am devoloping an app for WP7, and this would bee help full since it has to use json for connection with local news paper….

  • Ben

    Silverlight support is very important to me.

  • James

    I guess silverlight and WP7 is the hot topic. I also believe that being able to call RESTful APIs with RestSharp should be the primary focus. What protocols are needed to support rest services? Can you call the Twitter api using Oauth or xAuth or oAuth wrap or whatever is it these kids are using these days?

  • http://blog.prabir.me/ Prabir

    incase you are using oauth2 its already been added.

    http://github.com/prabirshrestha/RestSharp/blob…

  • http://blog.prabir.me/ Prabir

    I think Windows Phone 7 and Silverlight is pretty important. (will be more when windows phone comes out to the market)

    I have been planning to support it for http://github.com/prabirshrestha/FacebookSharp soon.
    I could help in contributions too.

    I recognized that async methods in normal windows apps, have problems. once its fixed it wouldn't be much difficult to port it to silverlight and windows phone..

  • Dont

    just curious … what do you think needs to be fixed exactly ?

  • Mmcgrego

    Very important for me, that's actually why I ended up coming here.. for WP7 support.

  • http://lukencode.com Luke Lowrey

    windows phone 7 support for the win

  • Hugo Estrada

    I am using it for silverlight. It is great! And a library like yours is really needed for silverlight applications.

  • Ben

    WP7 is important – that's why I'm here too. Thanks for all of your hard work!

  • http://blog.davehawes.com Dave Hawes

    Your library is an excellent resource for Windows Phone 7! Keep up the good work (please!!)

  • http://kenny.lindberg.myopenid.com/ kenny

    I'm working in SL, but not for the phone yet. Mono is important too.

  • https://www.google.com/accounts/o8/id?id=AItOawmkbekuod-eVzgFxcWYIBFYT6RISs5u_T0 NTH

    I would love to see support for wp7 and Silverlight!

  • Kenny

    I’m using RestSharp in a Windows Phone 7 project and intend to continue to do so in the future. It’s a great framework and definitely makes my life easier – thanks!

  • New_RestSharp_User

    Hello,

    I downloaded the package for Windows RestSharp Phone. When I run the method ExecuteAsync responseStatus always returns the error.

    This is my code, can anyone help me please?

    Thank you,

    RESTClient RESTClient client = new ();
    RestRequest RestRequest request = new ();

    request.Resource = “http://localhost:57321/RestServiceImpl.svc/xml/123″
    request.method = Method.GET;

    client.ExecuteAsync (request, (response) =>
    {
    if (response.ResponseStatus == ResponseStatus.Error)
    {
    TxtDescription.Text = “You have made a mistake!”
    }
    else if (response.ResponseStatus == ResponseStatus.Completed)
    {
    if (response.Content! = null)
    TxtDescription.Text = response.Data.XMLDataResult;
    }
    });

  • http://john-sheehan.com/blog John Sheehan
  • http://twitter.com/eibrahim Emad Ibrahim

    How do I add a file to WP7 post request?

  • http://john-sheehan.com/blog John Sheehan

    This was just added. Make sure to get the latest source. If you run
    into issues, start a thread in the Google Group:
    http://groups.google.com/group/restsharp

  • SilverlightGIS

    very important, looking for it now want to login to my wp7 app, using facebook login, not using Azure ( ACS) its too expensive

  • dusan

    Hi… im using RestSharp for wp7. i find it very helpful. Im using it in 3 apps for now! :)