Questions tagged [twitter]

Twitter is a microblogging service that lets users post short "Tweets" of up to 280 characters. These can also be posted via its API.

Twitter is a social networking and microblogging service that enables its users to send and read short status messages ("Tweets") - originally, up to 140 characters. Users can "follow" other users to build a social network, and can "retweet" messages they wish to propagate to their followers.

Private, direct messages to other users are possible, as well as public replies and "@mentions".

Messages can be tagged with particular topics using "hashtags" such as #stackoverflow. Messages can optionally be geo-tagged if sent from a GPS-equipped device.

Tweets can also be posted, read, and searched via its API https://developer.twitter.com.

25293 questions
61
votes
7 answers

Sharing URL to Facebook, Twitter and email in Android?

Is there anything similar to getsharekit.com for Android? It allows to share URL's to social networking sites. Is there anything similar to this or do I need to code separately for facebook, Twitter and email?
sunil
  • 9,541
  • 18
  • 66
  • 88
61
votes
6 answers

Twitter - share button, but with image

I want to use regular share button like on this page https://twitter.com/about/resources/buttons#tweet but to add an embedded image from my site, not just link. I know all about 1.1 api and uploading, but making an tw application and then ask…
S S
  • 987
  • 1
  • 9
  • 20
58
votes
11 answers

Twitter-style autocomplete in textarea

I am looking for a Javascript autocomplete implementation which includes the following: Can be used in a HTML textarea Allows for typing regular text without invoking autocomplete Detects the @ character and starts autocomplete when it is…
Martin Wiboe
  • 2,119
  • 2
  • 28
  • 50
57
votes
10 answers

Going from twitter date to Python datetime date

I am receiving twitter messages that are sent at a certain date in the following format from twitter: Tue Mar 29 08:11:25 +0000 2011 I want to store these dates in 'timestamp with time zone' field in postgresql with djangos DateTimeField field.…
Javaaaa
  • 3,788
  • 7
  • 43
  • 54
57
votes
4 answers

Get current user's info from Twitter API

I am building a Twitter app (with oAuth) and I cannot find any info on how I can get the current user's info. By current user, I mean the user which granted my app permissions and for whom the app is making the requests to the API. Any suggestions?
Thomas
  • 4,641
  • 13
  • 44
  • 67
57
votes
6 answers

Can we get email ID from Twitter oauth API?

How to get email id of the user who accepted my Twitter application? I have gone through lot of forums. But they have mentioned, it is not possible. Also those posts are older than a year. May I know whether it is possible to get the user email id…
Vinoth Babu
  • 6,724
  • 10
  • 36
  • 55
57
votes
4 answers

Desktop applications only support the oauth_callback value 'oob'/oauth/request_token

I'm trying to authenticate with OAuth on NodeJS and I'm getting this error: Error getting OAuth request token : { statusCode: 401, data: '\n\n Desktop applications only support the oauth_callback value \'oob\'\n /oauth/request_token\n\n' } Here…
felipekm
  • 2,820
  • 5
  • 32
  • 42
54
votes
3 answers

Twitter API - Display all tweets with a certain hashtag?

How would I go about displaying tweets that contain a certain hashtag using the Twitter API? Thanks I'd also like to know if there is a way to get all tweets from a certain hashtag in a separate file, also the ones that don't show up in your feed…
Probocop
  • 10,346
  • 28
  • 85
  • 115
53
votes
8 answers

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

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
Boaz
  • 25,331
  • 21
  • 69
  • 77
53
votes
5 answers

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. http://www.getsharekit.com/ For android i have no idea if…
52
votes
7 answers

Why couldn't twitter scale by adding servers the way sites like facebook have?

I have been looking for an explanation for why twitter had to migrate part of its middle ware from Rails to Scala. What prevented them from scaling the way facebook has, by adding servers as its user base expanded. More specifically what about the…
Jason
  • 1,129
  • 1
  • 9
  • 20
52
votes
5 answers

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: …
ibz
  • 44,461
  • 24
  • 70
  • 86
50
votes
11 answers

regex for Twitter username

Could you provide a regex that match Twitter usernames? Extra bonus if a Python example is provided.
Juanjo Conti
  • 28,823
  • 42
  • 111
  • 133
49
votes
2 answers

Twitter API error 215

Today, we discovered one of my clients Twitter feeds became broken. I have tried switching to using the new API 1.1, but get the following error: {"errors":[{"message":"Bad Authentication data","code":215}]} Even using their own example generates…
Michael Giovanni Pumo
  • 14,338
  • 18
  • 91
  • 140
48
votes
5 answers

How to retrieve all tweets from a user and not just the first 3,200 as Twitter limits it’s timeline and API to

With https://dev.twitter.com/docs/api/1/get/statuses/user_timeline I can get 3,200 most recent tweets. However, certain sites like http://www.mytweet16.com/ seems to bypass the limit, and my browse through the API documentation could not find…
apscience
  • 7,033
  • 11
  • 55
  • 89