twitter

Tomcat to run a twitter stream monitoring app?

I'm a newbie when it comes to Java for web application stuff, so forgive me if I'm missing something obvious. I'm building an app that uses the Twitter Streaming API and Jtwitter to listen for various tweets, do some database record-keeping, and send out some tweeted replies. The application has no web component, although there will be...

Twitter search for anything from a certain source

The Twitter-search features the possibility to search for a source of tweet by using the parameter "source:" (e.g. source:tweetdeck). If I just search for that it complains about a missing query, but I actually want to search for any tweets from a certain source. Is that possible? ...

Oath+Twitter IPhoneSDK

Does anyone know of a good example utilizing the twitter API and Oauth authentication for sending Twits iPhone SDK ........... I got stuck @ sending the twits .........I can make a successful login to twitter Via Oath+MGTwiiterEngine (Can check the credentials). Now based on that session I want to know how to send twits.. Or either i ...

Looking for open source naive Bayesian Classifier in C# for a Twitter sentiment analysis project.

I've found a similar project here: http://stackoverflow.com/questions/573768/sentiment-analysis-for-twitter-in-python . However, I'm working on C# and need to use a naive Bayesian Classifier that is open source in the same language. Unless someone can shed light on how I can utilize a python Bayesian Classifier to achieve the same goals....

How to use bit.ly for Twitter

Hi, I'm developing a J2EE website with spring framework. I want my website to share with Twitter but I couldn't succeed using bit.ly API. the function makes bit.ly link but in Twitter's share page I only see the full link. How can I send the bit.ly link to Twitter? The bit.ly response which I get from firebug: BitlyCB.getBitlyUrl({"...

get followers using Twitter API ME

Hi Guys , I am using Twitter OAth, i implemented this in GWT I want to get all followers photo url,there names Please help me Thanks ...

.NET Profiles to follow on Twitter?

What profiles do you recommend following on twitter if you want to keep up with .NET? Here is a starting list: mosessaur damienguard shanselman ayende haacked jglozano ManzurRashid scottgu jonskeet elijahmanor ...

Use $.ajax() to get twitter mentions feed

I've read this but didn't get much info from it or I don't know what to do with it. How can I use $.ajax to just get the mentions feed of my account on to my site? Edit: How do I process the data now...? For example, how should this part look? $('status', data).each(function() { // Process each status here }); Thanks! ...

Android -- Twitter Oauth -- Many different methods, none seem to work. Help.

Hello, I can't get Oauth to work with Twitter. I have tried the following (all result in the same 401 error): jTwitter (using the default OauthSignpostClient) jTwitter using the commonshttp library (CommonsOauthProvider) instead of the "DefaultOauthProvider" jTwitter using the OauthScribeClient (instead of the OauthSignpostClient) oau...

Can't tell if user with protected tweets is following me using Tweetsharp

I've used the method indicated here: http://stackoverflow.com/questions/2525791/how-to-see-if-a-user-is-following-you-on-twitter-using-c-twitter-api-wrapper-twe to retrieve whether or not a user is following me, but I've found that if a user has protected their tweets, the script returns the following error: You do not have permissio...

Why would I get a 401 when retrieving someone's public profile

I am trying to retrieve someone's profile, but it throws me a 401. I am pretty puzzled, since it works for quite a few people, but fails for others 401 Not Authorized error: Unauthorized: This leads to a very poor UX. Any ideas? ...

How to process Oauth nonces on the server side ?

I am writing the provider part of the OAuth protocol on the serverside and I'm cracking my ahead over how much of the nonces sent by OAuth consumers that I need to cache. According to twitter's docs, Twitter will only allow a nonce to be used once by your application. Prevents replayed requests. The question: My implementati...

How to perform a search query using Services_Twitter?

I am trying to perform a Twitter search using the PEAR package Services_Twitter. Unfortunately this only returns an array of status ids, for example *(var_dump)*: object(stdClass)#88 (2) { ["statuses"]=> array(11) { [0]=> int(49497593539) [1]=> int(49497593851) [2]=> int(49497598001) [3]=> int(4949759...

GET amount of retweets for all and each tweet from Twitter on GAE?

Hi, I have a service with 1000 users and everyone has tweeted around 1000 times each. So the total amount of tweets from my service is around 1 000 000. And this number is increasing all the time. My question is, how can I get and check the amount of retweets for each tweet without having my service crashing all the time because of "Cr...

Design of a Decentralized Twitter

Twitter is a popular social networking service where users can write short messages in a one-to-many fashion (you can read more about it at Wikipedia). I've been reading an interesting article by Alex Payne (former API Lead at Twitter), The Very Last Thing I’ll Write About Twitter, where he argues for a decentralized one-to-many communic...

How can I hotlink/embed a Twitpic image?

So in this URL: http://twitpic.com/2paihn The Twitpic ID is: 2paihn And the actual image URL is: http://s3.amazonaws.com/twitpic/photos/large/163413275.jpg?AWSAccessKeyId=0ZRYP5X5F6FSMBCCSE82&Expires=1284740401&Signature=6lgT6ruyyUDDjLOB7d42XABoCLU%3D I've tried getting the integer id through the api (i.e. 163413275) and repl...

page peal z-index issue ?

i'm trying to use page peal to hide my current tweets until it's hover'd over // for some reason, when the page first loads (( i'm using chrome )) the text displays until it's hover'd over. not really sure why.. here it is // any ideas ?? ...

'Session expires' error in oauth for twitter

I am using abraham williams library to update twitter status using oauth. But I am constantly getting 'session expired' error. How can I get around this. This is my source. connect.php <?php session_start(); require_once 'twitteroauth/TwitterOAuth.php'; define("CONSUMER_KEY", "--------------------"); define("CONSUMER_SECRET", "--------...

Twitter Search OAuth

Hello All, I am trying to develop an application to perform search in twitter using OAuth and PHP. Please help me on this. ...

Fetch a specific user timeline from Twitter

I'm building an application that should listen to a specific user timeline, can I use the API for that or is the API more of a "I want to build my own Twitter client" thingy? ...