I started to use twitterizer API for my blog. I post my tweet from my cms system. I get this error
The remote name could not be resolved: twitter.com
In the .cs file my code goes here
Twitter t = new Twitter("emrekiyak", "*****"); t.Status.Update(textbox1.Text);
and web.config configuration is that :
< trust level="Medium" originUrl="https?://(www.)?twitter.com/.+"/ >
How can i solve this problem.
Thank you all