Twitter Proxy in C #

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

Here you need to specify the direct requests of the Twitter service to my service, which are transmitted to Twitter.

+3
source share
2 answers

It really turned out to be very simple with an ASP.NET MVC application. I use ControllerAction, which takes a POST and URL for the request as a parameter. A jQuery call $.ajax()sends an action request. ControllerAction opens the WebRequest for the URL passed in the POST, and redirects the result back to the client using Content().

0
source

Check out this project on codeplex LNQ to Twitter , this may help.

0
source

Source: https://habr.com/ru/post/1723426/


All Articles