Posted on: 8/5/2014 10:22:17 AM | Views : 1412

Hi folks,
i have a twitter a App, which will access tweets on behalf of the user who visit my website. i have used linqtotwitter library to access the twitter API. In the process of OAuth i am facing an error and the error is:
<?xml version="1.0" encoding="UTF-8"?><hash><error>Invalid / expired Token</error<request>/oauth/access_token</request> Please visit the LINQ to Twitter FAQ (at the HelpLink) for help on resolving this error. code used for oauth is:
public partial class Twitter : System.Web.UI.Page { AspNetAuthorizer auth; protected async void Page_Load(object sender, EventArgs e) { auth = new AspNetAuthorizer { CredentialStore = new InMemoryCredentialStore { ConsumerKey = ConfigurationManager.AppSettings[&quo ...

Go to the complete details ...