Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

22
votes
2answers
887 views

Where did FluentTwitter go?

In TweetSharp 1.0 there was FluentTwitter, TweetSharp 2.0 doesn't seem to have this anywhere, it doesn't even seem to be deprecated but rather just deleted altogether, can anyone point me if this part ...
7
votes
3answers
542 views

Where is TweetSharp? [closed]

Cannot find TweetSharp v2.0 http://tweetsharp.com/ is expired http://tweetsharp.codeplex.com/ - 404 http://code.google.com/p/tweetsharp/ - 403 https://github.com/danielcrenna/tweetsharp/ - seems ...
3
votes
1answer
105 views

“Headers rejected by Twitter” when uploading media to Twitpic with TweetSharp/Hammock

I'm trying to upload a picture to Twitpic using TweetSharp and Hammock libraries in a WP7 app. The piece of code which uploads the photo is this: // Clients.srv is a TweetSharp TwitterClient ...
3
votes
1answer
1k views

Tweet An Update Using C# TweetSharp With New OAuth

I don't suppose anyone has used the latest version of TweetSharp to do a twitter status update, I was using the old version and now getting a bit lost with this OAuth stuff and cannot get it to work. ...
2
votes
1answer
363 views

TweetSharp Authorization on WP7 (oAuth)

I am trying to make a WP7 app that would Tweet short messages user wants to. The problem is that I always get Unauthorized response. Here is what I do: First, I initialize Service: TwitterService ...
2
votes
3answers
3k views

How to setup a project to use TweetSharp

I am trying to follow Pete Brown's introductory WPF tutorial which makes use of the TweetSharp libraries to interact with Twitter. I have downloaded what appears to be the latest TweetSharp binaries ...
2
votes
1answer
535 views

Twitter search c#

I have implemented a method which manually scrapes the Search Twitter page and gets the tweets on different pages. But since there is a fast refresh rate, the method triggers an exception. Therefore I ...
2
votes
2answers
246 views

What are the difference in simple and OAuth autentication in Tweeter for?

I was checking out the Tweet# API, and notice that there are 2 ways to authenticate. .AuthenticateAs(TWITTER_USERNAME, TWITTER_PASSWORD) and .AuthenticateWith(OAUTH_CONSUMER_KEY, ...
1
vote
1answer
109 views

Twitter and Winform C# app is making me go bald

Ok twitter might be great for social media but for a small app that I am trying to create just for fun has turned into a nightmare. I have searched everywhere and can't find a good explanation on how ...
1
vote
2answers
138 views

Nuget package dependencies. Does it work the way it should?

RavenDb latest version is installed as a nuget package. It references Newtonsoft.Json 4.0.2. I'm trying to install TweetSharp. I get this log: M> Install-Package TweetSharp Attempting to resolve ...
1
vote
3answers
544 views

Multi login problem using Twitter and Facebook Oauth

I am adding Twitter and Facebook login to a MVC 3 test application using TweetSharp and Facebook C# SDK. Currently when a user signs in using Twitter I create a user account for that user in a user ...
1
vote
0answers
149 views

Tweetsharp authorization renders no oauth token

I am trying to implement tweetsharp in my asp.net mvc 3 application but I am running into issues. I have created a new twitter application with the following settings: Application website: ...
1
vote
1answer
494 views

TweetSharp 2.0 search and Geocode

I'm trying to get TweetSharp to perform a search on tweets from within a certain area. Unfortunately this always returns 0 results. public IEnumerable<TwitterSearchStatus> Search(string terms) ...
1
vote
1answer
121 views

C# TweetSharp WCF service fails to generate TwitterMention

So using VS2010 (or SVCUTIL.EXE) to created a WCF class, it does not generate the TwitterMention part of the TwitterStatus or TwitterStatus.TwitterEntities. For example, I cannot access ...
1
vote
1answer
2k views

Get all tweets with specific hashtag

I've been experimenting with the Twitter API because I want to display a few lists of tweets on a special page. Among those lists is a list with all tweets containing a specific hashtag (e.g. #test) ...
1
vote
1answer
169 views

Client app using Twitter and OAuth: Is my method correct?

I have an application that I've developed in .NET 4.0/C#. It's designed to be used by customers that want to watch hardware sensors and alert them of specific values. One option for notification is by ...
1
vote
1answer
375 views

Recent modification to Twitter API?

I wrote a very simple C# application to send Tweets between to Windows machines. To do this, each endpoint (ie this C#.NET desktop app that uses the TweetSharp library) has a timer, and when the ...
1
vote
0answers
222 views

SecurityException when trying to read public timeline with TweetSharp

I'm trying to read from the public timeline with the TweetSharp library from a silverlight project when I get this exception. Unhandled Error in Silverlight Application Code: 4004 Category: ...
1
vote
1answer
181 views

Delete Inbox Messages with TweetSharp

I'm using the latest stable built of TweetSharp from codeplex in a VS2008 C# project. I'm writing the project in terms of TwitterService not FluentTwitter. I have an application that authenticates, ...
1
vote
1answer
296 views

Why is TweetSharp throwing an exception?

This is the most BASIC example possible and it's throwing an exception. // Pass your credentials to the service TwitterService service = new TwitterService(API_KEY,API_SECRET); service.UserAgent = ...
1
vote
2answers
327 views

Why is GetRequestToken not working?

I have the following little snippet that won't compile: using TweetSharp.Twitter.Fluent; //... var twitter = FluentTwitter.CreateRequest(); twitter.Authentication.GetRequestToken("...", "..."); ...
1
vote
1answer
348 views

Steps to use twitter api - console application

I am trying to develop a very basic console application that will retrieve a user's homepage (twitter updates from people followed by the user) and save it (json). I've read a lot on the internet, but ...
1
vote
1answer
187 views

Cannot find method AsToken() in TweetSharp

I'm attempting to create a web application with TweetSharp that will connect to Twitter with OAuth. So far I am able to pass the consumer key and consumer secret to Twitter, have the user allow my ...
1
vote
2answers
309 views

Should HtmlEncode be used when updating twitter status with Tweetsharp?

I am using tweetsharp to send tweets. var response = _twitter.AuthenticateWith(item.TwitterToken, item.TwitterSecret) ...
1
vote
1answer
181 views

.NET Security Error accessing external API

i'm building a small Twitter web app for myself. I am using TweetSharp but I keep getting an error: Server Error in '/test' Application. Security Exception Description: The application attempted to ...
1
vote
3answers
852 views

Search on multiple keywords with tweetsharp

I am trying to use Tweetsharp to do a search on twitter for specific keywords but I want to do a search on multiple keywords. The following code works but only for one keyword. Anyone would know how ...
1
vote
1answer
525 views

twitter status update using tweetsharp oauth preview 17

I am trying to update the status using tweetsharp oauth preview 17. Please let me know how ?. I tried this code var msg = FluentTwitter.CreateRequest() .AuthenticateWith(_consumerKey, ...
0
votes
0answers
26 views

How to check whether user is following me not using TweetSharp.TwitterService.ListFollowers()

Is there some function in TweetSharp that could be used in a similar way to my 'IsFollowingMe' below? I'd like to check whether a user is following me before I attempt to send some private message. ...
0
votes
1answer
78 views

How to get the complete list of followers

Using the last version of the tweetsharp library for the twitter api, i am trying to get all the followers for a specific user. But i can only get the last 100 followers with this method: ...
0
votes
0answers
51 views

MonoTouch.Dialog + TweetStation + MyProgram

I am developing a Tweeter search application for iPhone which uses, MonoTouch.Dialog.dll, Newtonsoft.Json.dll, and TweetStation.dll (I have compiled the TweetStation as a library, and using that as a ...
0
votes
1answer
34 views

Send Geolocated Tweet with Tweetsharp

I am trying to tweet with geolocation with tweetsharp api. I did use TwitterStatus status = ts.SendTweet(s,lat,lon); code. But status object reference is null. How can i send geolocated tweet?
0
votes
1answer
144 views

TweetSharp - how to get friends list?

How do I get the user's friend list using tweet sharp?
0
votes
1answer
68 views

TweetSharp - always need to auth (web app)?

Do I always need to auth the user everytime i want to grant my app permission to use the user's twitter account? can i just grant once? I used the following code.. public ActionResult Authorize() ...
0
votes
0answers
18 views

TweetSharp Proxy Connection Not working

I try to connect twitter api with tweetsharp service. My computer connecting with proxy from internet explorer. But i cant connect twitter api with proxy property on twitterservice. How can i connect ...
0
votes
1answer
79 views

How to get tweet's HTML with LinqToTwitter?

I recently switched from TweetSharp to LinqToTwitter and the one thing I'm missing is a way to retrieve a tweet as HTML. TweetSharp had a method called .TextAsHtml() which automatically linked ...
0
votes
0answers
45 views

TweetSharp:Getting No Twitter feeds in SharePoint server 2010 web application

I am using Tweetsharp.dll and Newtonsoft.Json.dll in my visual studio 2010 code(C# ,.net 3.5) to get the Twitter feeds in SharePoint server 2010. I am using Twitter API i.e. TwitterClientInfo and ...
0
votes
0answers
35 views

Tweetsharp is crashing my Visual Studio 2010

I can't view the Properties pane/tab at all, when I try and open the properties tab while in the xaml/window designer I get the following message (inside the property pane). Also this same message ...
0
votes
2answers
234 views

Twitter Oauth callback to www subdomain within same domain

I'm using ASP.NET MVC 3 and TweetSharp. I'm open authorization dialog with window.open(), at the end of auth program in this window tries to access to main window through window.opener. In my ...
0
votes
0answers
75 views

tweetsharp and .NET 2

I'm having problems running the demo app on .NET 2 with Tweetsharp library: TwitterService service = new TwitterService(); IEnumerable<TwitterStatus> tweets = ...
0
votes
1answer
115 views

Follow user using TweetSharp

I use following code to follow user: TwitterService ts = new TwitterService(TWI_CONSUMER_KEY, TWI_CONSUMER_SECRET); ts.AuthenticateWith(token.Token, token.Secret); var users = ...
0
votes
0answers
149 views

TweetSharp examples for Silverlight?

I'm looking for some examples of how to use TweetSharp in Silverlight, because I'm trying to post feeds from my Silverlight browse app by calling the asynchronous methods in TweetSharp library and I'm ...
0
votes
0answers
114 views

Send a tweet with TweetSharp from Silverlight app

I'm trying to make the request calling the asynchronous method with the begin/end approach this way: TwitterService service = new TwitterService(consumerKey, consumerSecret); ...
0
votes
0answers
102 views

TweetSharp SendTweet returns User null as status

I have the following code in my controller using TweetSharp: TwitterService service = new TwitterService("xxx", "xxx"); service.AuthenticateWith("xxxx", "xxxx"); TwitterStatus status = ...
0
votes
2answers
371 views

OAuth with twitter

I download tweetsharp and twitterizer and I can not make it work. I try tweetsharp with the basic following sample TwitterService Service = new TwitterService(consumerKeyTw, consumerSecretTW); ...
0
votes
1answer
255 views

How to access the tweet history conversation using TweetSharp?

I am trying to access a tweet conversation history using TweetSharp. The requirement is like, if I use id of one tweet item it should return me the whole thread that followed before that tweet item. ...
0
votes
1answer
320 views

fetching all past tweets from users home timeline on twitter

I'm trying to write a program that will retrieve all of the tweets the user has seen on their twitter home timeline (ie, from people their following, as they would see at twitter.com). I realise this ...
0
votes
1answer
148 views

tweetsharp logout

Does anyone know how to log a user out of Twitter using Tweetsharp? I am using svc.EndSession(); where svc is a TwitterService object. However the user (me) stays logged in. A quick refresh of ...
0
votes
1answer
728 views

TweetSharp Remove/Undo Retweet

I am using TweetSharp for an little twitter application. I am able to select an tweet and retweet it... but I can't find a way to undo that action. Is that functionality not available in TweetSharp ...
0
votes
1answer
142 views

tweetsharp implementation in mvc.net

Hi I want to use Tweetsharp in my mvc.net application to get the list offriends and to share image with them. But i haven't got the proper documentation and sample for the same. What is need to add in ...
0
votes
1answer
446 views

help with tweetsharp API v2 for WP7

I'm using the new version of tweetsharp api (v2) and i've had some problems with implementation on wp7... i'm developping one app that use this api for tweet phrases to user account who's use my ...

1 2