Hi, Using DotNetOpenAuth 3.4.3.10103 when i call:
public static XDocument GetUpdates(ConsumerBase twitter, string accessToken) {
IncomingWebResponse response = twitter.PrepareAuthorizedRequestAndSend(GetFriendTimelineStatusEndpoint, accessToken);
return XDocument.Load(XmlReader.Create(response.GetResponseReader()));
}
I keep getting "Failure looking up secret for consumer or token." on PrepareAuthorizedRequestAndSend the access key is good and I can see it in debug on the twitter.
Thoughts?