tags:

views:

137

answers:

2

Does anyone know of a Twitter service proxy in particular, or a general-purpose REST service proxy that I could install on my own server, written in C#?

The point here is to direct Twitter service queries to my service that are passed-through to Twitter.

A: 

Check out this project on codeplex LNQ to Twitter, it might be of some help.

Rohan West
I've downloaded that, it's great but it's not what I need. I need to be able to point Twitter queries to *my* service, and have them passed on to Twitter, then returned back through the same way. Proxy.
Dave Swersky
LINQ to twitter? omg.. :)
Ciwee
A: 

This actually turned out to be very simple with an ASP.NET MVC application. I'm using a ControllerAction that accepts a POST and the URL to request as a parameter. A jQuery $.ajax() call sends the request to the Action. The ControllerAction opens a WebRequest to the URL passed in the POST, and forwards the result back to the client using Content().

Dave Swersky