Tagged Questions

Twitter is a microblogging service that lets users post "tweets" of up to 140 characters. These can also be posted via its API (http://dev.twitter.com).

learn more… | top users | synonyms

597
votes
15answers
46k views

Twitter image encoding challenge [closed]

If a picture's worth 1000 words, how much of a picture can you fit in 140 characters? Note: That's it folks! Bounty deadline is here, and after some tough deliberation, I have decided that Boojum's ...
45
votes
16answers
3k views

Good Programming Twitters

I am looking for good programming people to follow on Twitter. What are your suggestions?
41
votes
5answers
3k views

Today's XSS onmouseover exploit on twitter.com

Can you explain what exactly happened on Twitter today? Basically the exploit was causing people to post a tweet containing this link: ...
31
votes
6answers
7k views

Best java twitter library?

The twitter API site lists 3 java twitter libaries. Twitter4j java-twitter jtwitter Do you know others? What are your experiences in support, ease of use, stability, community, etc.
28
votes
8answers
12k views

What is the best Twitter API wrapper/library for .NET? [closed]

I'm looking for a way to programatically generate a twitter feed for a .NET application. Any recommendations as to a good wrapper for the twitter api to ease the work? Boaz
27
votes
3answers
28k views

how to get twitter Consumer and secret key?

I am working twitter project where i want to use oAuth but i am not getting consumer and secret key . Please help to find both.
26
votes
7answers
3k views

Does Scala scale better then other JVM languages?

Here is the only way I know to ask it at the moment. As Understand it Scala uses the Java Virtual Machine. I thought Jruby did also. Twitter switched its middleware to Scala. Could they have done ...
25
votes
7answers
25k views

Android action bar like twitter sample

What is the best way to implement action bar like twitter sample UI Pattern. Twitter for Android: A closer look at Android’s evolving UI patterns Pattern 4: Action Bar ...
22
votes
2answers
884 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 ...
20
votes
3answers
3k views

Why does Twitter use a hash and exclamation mark in URLs, and how do they rewrite search URLs?

We understand the hash is for AJAX searches, but the exclamation mark? Anyone know? Also, the "action" attribute for their search form points to "/search," but when you conduct a search, the hash ...
20
votes
5answers
12k views

Twitter oAuth callbackUrl - localhost development

Is anyone else having a difficult time getting Twitters oAuth's callback URL to hit their localhost development environment. Apparently it has been disabled recently. ...
19
votes
2answers
4k views

Is there a way to get an user's email ID after verifying her Twitter identity using OAuth?

I am new to OAuth and have been playing around with the Twitter API. I am able to fetch the credentials of an user after authentication by making a request to ...
18
votes
3answers
3k views

What's the best C# Twitter API for a twitter bot

I'm writing a C# app that will be required to integrate with twitter, I need to be able to do the following: send direct messages read all messages that are either @helloapp or #helloapp If you ...
17
votes
5answers
1k views

Clojure example of the day?

Is there a Clojure example of the day kind of service, like a blog, or Twitter account I can follow? Would be really nice to have a short example every day to enhance Clojure skills and to get ...
17
votes
5answers
8k views

Android Intent for Twitter application

Is it possible to show a list of applications (with intent.createChooser) that only show me my twitter apps on my phone (so htc peep (htc hero) or twitdroid). I have tried it with ...
17
votes
6answers
1k views

How to aggregate analytics from Google, Twitter, YouTube, Facebook, etc

I have a video blog for which I would like to track certain statistics, including stats from Google Analytics, Twitter, YouTube, Facebook, etc. The problem is that the various stats are on different ...
17
votes
5answers
5k views

Which C#/.NET Twitter API do you recomend?

I wondering if I'm going to make a twitter app, but not sure which one of these libraries I should use. Any suggestions? C#/.NET Libs The app should be able to post new tweets, read tweets(from ...
16
votes
3answers
415 views

how to improve my algorithm for analyzing twitters messages from users?

Hello i had a nice idea to implement for the human kind goodness. i call it FixTheUnFixed. the idea goes like this, imagine you are driving or traveling all over the world and when you see some ...
16
votes
4answers
7k views

Best Twitter PHP Library

Can anyone suggest which of the following Twitter PHP libraries is the best? My Twitter by Andres Scheffer. Twitter by Felix Oghina. TwitterLibPHP by Justin Poliey. Arc90_Service_Twitter by ...
15
votes
4answers
471 views

How to --> Offer a coupon for a Tweet

I've seen recently a few times when companies offer either a download link or a coupon code for people that will tweet about it. It is all automated and I would like to do something like this but I'm ...
14
votes
5answers
695 views

Twitter-esque UITabBarController?

I'd like to make an app that uses a UITabBarController that is similar to the one in the Twitter app for iPhone and iPod touch. (Blue light for unread and sliding arrow for switching between content ...
14
votes
14answers
12k views

Parsing json with sed and awk

I'm trying to parse json returned from a curl request, like sp: curl 'http://twitter.com/users/username.json' | sed -e 's/[{}]/''/g' | awk -v k="text" '{n=split($0,a,","); for (i=1; i<=n; i++) ...
12
votes
1answer
1k views

Facebook like and Twitter tweet buttons causing Cross Domain Issues

I am using both the twitter tweet button, and the facebook like button <a href="http://twitter.com/share" class="twitter-share-button" data-url="http://example.com" data-text="some text" ...
12
votes
5answers
3k views

Integrating FaceBook, Twitter, Social networks in Android

Integrating Multiple Social networks into Android with a single common Framework or API or JAR For iPhone we have ShareKit, which integrates multiple sharing options in one framework. ...
12
votes
3answers
109 views

How to Add Phone With twitter using Third Party tool

I need a script that will add my phone with Twitter for All latest notification. I found this page Twitter but i need to create script for my own application. I goggled but i didn't get any solution ...
12
votes
8answers
11k views

Keep getting OAuth::Unauthorized error when using oauth and twitter ruby gems

I am using the ruby twitter gem and oauth to gain access to users twitter accounts. In my code, I have: unless @user.twitter_authd? oauth = Twitter::OAuth.new('token', 'secret') ...
12
votes
7answers
404 views

What are some ways to have fun with a large amount of data? (ie, the Twitter, del.icio.us etc. APIs)

Twitter, Google, Amazon, del.icio.us etc. all give you a lot of data to play with, all for free. There's also a lot of textual data available through initiatives like Project Gutenberg. And that, it ...
11
votes
7answers
2k views

Python vs. C# Twitter API libraries

I have experience with both .NET(5yrs) and Python(1yr) and I want to create a simple web project with Twitter as the backbone. I have experience with AppEngine, and have always wanted to try Azure. ...
11
votes
3answers
5k views

Consuming a REST service from WCF

I'm not that familiar with WCF, but I thought I'll learn while trying to consume an existing service. One of the REST APIs I thought of was the Twitter API. I thought of developing a WPF client that ...
10
votes
4answers
1k views

Twitter OAuth Login Page on the iPhone

I have Twitter integrated into my application, with the help of Sharekit. Everything works pretty well except, if the user happens to tap on the "Sign Up" link on the Login/allow page, it goes to a ...
10
votes
3answers
1k views

iPad slidable panel controll like twitter

What would be the mechanism behind twitter iPad application? I feel its having split viewcontroller, viewcontrollers with animation and gesture controls, or there may be scrollviews for endless ...
10
votes
2answers
290 views

What's a good set of heuristics for threading tweets?

Everyone knows, if you want to thread emails you use Jamie Zawinski's algorithm. But it's a new century, and there's a new messaging service. What's the best algorithm for threading status updates ...
10
votes
2answers
7k views

Twitter API - Logout

I'm using OAuth in my web app, and users can login with twitter. I want to add "switch twitter account" button, which actually clears the session and then opens the authorize_url. As clearing the ...
10
votes
4answers
3k views

How Does Twitter's OAuth System Work?

I have got a demo script that lets me authorize with my app and sends back my token. But this is confusing. I have always used username and password in my CURL or simpleXML functions to authorize the ...
10
votes
14answers
2k views

Full text search with embedded DB in Delphi

We are creating an open source Twitter client and are looking for an embedded DB with the smallest footprint possible that works with Delphi and that lends itself well to full text search (I know that ...
10
votes
4answers
330 views

Are there any MVC web frameworks that support multiple request types?

In every MVC framework I've tried (Rails, Merb, Waves, Spring, and Struts), the idea of a Request (and Response) is tied to the HTTP notion of a Request. That is, even if there is an AbstractRequest ...
9
votes
2answers
471 views

twitter api: What is the difference in following urls

Who can comment the following: import json, urllib url = "funnyfurniture.net/p/10/oops-chair/" url2 = "http://funnyfurniture.net/p/10/oops-chair/" tw_url = ...
9
votes
4answers
651 views

How to store a secret API key in an application's binary?

I am creating a Twitter client for Mac OS X and I have a Consumer secret. It's to my understanding I should not share this secret key. The problem is that when I put it as a string literal into my ...
9
votes
8answers
12k views

Twitter Tweet Button does not count

I am using the official Tweet Button from Twitter to allow users to share my site. The button itself is working just fine, however the counter doesn't work and stays at zero all the time. (after you ...
9
votes
4answers
4k views

Parsing Twitter API Datestamp

I'm using the twitter API to return a list of status updates and the times they were created. It's returning the creation date in the following format: Fri Apr 09 12:53:54 +0000 2010 What's the ...
9
votes
3answers
6k views

LinkedIn / Twitter / Facebook as OAuth and OpenId use

Firstly I understand OpenId is for authentication and OAuth is for authorisation and unlike other questions on the site I am not asking which should be used for which but if anyone can advise a ...
9
votes
3answers
4k views

Twitter OAuth via a popup

I was wondering how to do twitter OAuth via a popup, i.e. load up the Oauth page in a popup and make the callback close the child window and reload the parent window. Edit: OK iframes are bad, but ...
9
votes
4answers
8k views

how to access facebook or twitter using blackberry API?

I am newbie for such kind of social networking Application integration using blackberry API. i want to develope such kind of application which can use the facebook or twitter social networking site ...
9
votes
9answers
534 views

Using Twitter as a mechanism to remote control applications?

I was brainstorming interesting usages of Twitter and came up with the following: An application can use it as a call home mechanism An application that has an invalid license could broadcast its ...
9
votes
2answers
16k views

Sending tweets from iPhone apps using Oauth

Does anyone know of a good example utilizing the twitter API and Oauth authentication for iPhone SDK 2.2.1 or older? Found an example, but it seems to utilize a 3.0 only framework at ...
9
votes
2answers
713 views

TeamCity Twitter Notifier?

Has anyone built something to send out your TeamCity build status with Twitter? Can this be done with TeamCity's Jabber support?
8
votes
5answers
180 views

Why do Facebook, Twitter and GMail render all their data to the browser as JSON as opposed to HTML?

If you login to Facebook, Twitter or Gmail and view source, you'll notice something very peculiar. All your Tweets and mail are rendered as JSON. There are not angle brackets. My guess is, this data ...
8
votes
3answers
5k views

iPhone - How to use “ShareKit” only to post to facebook or only to twitter

In my iPhone app, i placed two butons "facebook" and "twitter". I want to use sharekit framework which makes my work simple. But as shown in the sample code of share kit, i don't want to show any ...
8
votes
3answers
5k views

Twitter SDK on iOS with standard UI

I am looking for the SDK to integrate Twitter into my iOS App. I have done research, and seem that MGTwitterEngine is what most people recommend. However, MGTwitterEngine only provides access to the ...
8
votes
6answers
1k views

Twitter connect popup page for iphone

Does Twitter has the iPhone SDK which has a login popup like facebook iOS SDK?

1 2 3 4 5 83