New Post: Beginner - Help
Yeah, I guess PDB files are purely related to library and debugging, so it shouldn't be an issue. Successfully pinged api.twitter.com! When it comes to permissions, I have enabled read & write now,...
View ArticleNew Post: GET conversation/show.json
I wonder if this Undocumented API endpoint GET conversation/show.json Implemented with tweetinvi ? it's very handy endpoint
View ArticleNew Post: Beginner - Help
Your debug output seems perfectly fine. GET : https://api.twitter.com/1.1/search/tweets.json?q=tweetinvi&result_type=Mixed Header OAuth...
View ArticleNew Post: GET conversation/show.json
Hi, I will be happy to implement it, but each time I try to access it I receive a 403 (forbidden) webexception. Maybe I am not using the right format for the query. Please review the endpoint URL and...
View ArticleNew Post: Signed version of Nuget DLL?
Could you create a signed version on Nuget too? My app can only use strongly named assemblies.
View ArticleNew Post: GET conversation/show.json
strange , i try it with LinqToTwitter library few weeks ago and it works fine https://linqtotwitter.codeplex.com/SourceControl/changeset/71b24015b52068a0e00a2dd8d622b875705a1e09
View ArticleNew Post: Beginner - Help
Just checked Twitter's API status and the userstream service has been down for two days now, I'm not entirely sure if the userstream service being down would affect your ability to post tweets, but I...
View ArticleNew Post: Beginner - Help
Hm, I cannot call Count() on tweets. I have Count<>, but that is not what we are looking for.
View ArticleNew Post: Beginner - Help
You need:using System.Linq; You'll need a reference to "System.Core". I just thought that you should make sure that the call to search is actually not working. Because you only mention about the tweet...
View ArticleNew Post: GET conversation/show.json
I actually looked a bit better and here is the information I got from Twitter. Code : 220 Content : Your credentials do not allow access to this resource So it seems that this endpoint has been closed...
View ArticleNew Post: GET conversation/show.json
you are correct , it seems that only OS X / iOS built-in Twitter accounts can use it, and that explain why we got that work with linqtotwitter and IOS App
View ArticleNew Post: Signed version of Nuget DLL?
I will have a look into the subject, I did not even know it was possible. Linvi
View ArticleNew Post: Beginner - Help
Working! Thanks imlokesh! Just one question: I ran a search with #poplave hashtag (floods in Serbia, a lot of tweets) but got only 15 elements in array. Is there a way to pull more? The idea is to run...
View ArticleNew Post: Beginner - Help
Cool. :)var param = Search.GenerateTweetSearchParameter("#poplave"); param.MaxId = -1; param.MaximumNumberOfResults = 100; var results = Search.SearchTweets(param); param.MaxId =...
View ArticleNew Post: The remote server return an error :(401) Unauthorized
I am a beginner to use this api. using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using...
View ArticleNew Post: The remote server return an error :(401) Unauthorized
Firstly, you do not need to set the application credentials. You only need to call SetCredentials once. Remove the assignment to ApplicationCredentials. If you are receiving Unauthorized exception....
View ArticleNew Post: The remote server return an error :(401) Unauthorized
Thank you @imlokesh.... I have one more problem.. i want to read tweet from my account.for that i am using following code but it doesnt give any output on the console. plz help me... var userStream =...
View Article