Ho provato a creare una semplice applicazione web prototipo che utilizza RestSharp per chiamare Rest API.
Non sono riuscito a trovarne un buon esempio. Qualcuno potrebbe condividere e indirizzarmi alla risorsa giusta per favore? Ho già esaminato quanto segue e non fornisce quello che sto cercando, ovvero un esempio completamente funzionale:
http://restsharp.org/ (non ha un'applicazione completa con l'esempio)
http://www.stum.de/2009/12/22/using-restsharp-to-consume-restful-web-services/ (sembra essere vecchio)
Durante la prototipazione ottengo l'errore di seguito per il codice seguente:
RestResponse response = client.Execute(request);
*Cannot implicitly convert type 'IRestResponse' to 'RestResponse'. An explicit conversion exists (are you missing a cast?) *