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
5
votes
1 answer

tweepy/ twitter api error type

I am using tweepy to make a twitter application. When users tweet/update profile, etc, they will get some errors. I want to classify error and give user more information. try: tweet/update profile/ follow.... except tweepy.TweepError, e: …
John
  • 3,888
  • 11
  • 46
  • 84
5
votes
1 answer

ClassNotFoundException: twitter4j.conf.PropertyConfigurationFactory : Android

If I don't run pro-guard on my project, everything is fine but if I run pro-guard and install .apk in device, I am getting above error. I tried adding following lines in proguard-android.txt file -keep public class…
Braj
  • 2,164
  • 2
  • 26
  • 44
5
votes
1 answer

My code for paging through Twitter friends using recursion not working - iOS

I'm trying to page through a user's twitter friends using cursors. Since you get 20 at a time along with a next cursor, I thought perhaps recursion was the best way to handle this. However, I believe because I'm using completion handler blocks, it…
Jason C. Howlin
  • 3,858
  • 3
  • 21
  • 29
5
votes
2 answers

How to use SentiWordNet

I need to do sentiment analysis on some csv files containing tweets. I'm using SentiWordNet to do the sentiment analysis. I got the following piece of sample java code they provided on their site. I'm not sure how to use it. The path of the csv file…
Belgarion
  • 149
  • 2
  • 3
  • 12
5
votes
2 answers

Rendering links in tweet when using Get Statuses API 1.1

I'm using the Twitter API 1.1 Get statuses method to return the latest tweet from an account on the client's website. This is working fine but I can't find any clear documentation on how to render any links that may be included (Both included…
Simon Wiffen
  • 161
  • 1
  • 9
5
votes
2 answers

Authorizing with oAuth, posting to Twitter

I've created a Twitter Application to auto-post to my Twitter account. So, I don't need to authorize new users. I've already set access level to read/write, and received an access token. I've used the OAuth Tool in the application to generate a…
bozdoz
  • 12,550
  • 7
  • 67
  • 96
5
votes
1 answer

Newtonsoft.Json Dependency issue

My project uses Newtonsoft.json V4.5. Now I have a requirement to integrate twitter oAuth in my project. I decided to use Tweetsharp.dll for the integration. Got up with an issue of dependency conflict of Newtonsoft.Json that Tweetsharp requires…
Hamid Narikkoden
  • 851
  • 5
  • 12
5
votes
4 answers

Twitter Api for .NETApplications

Can any one suggest me to best C# twitter api for developing application with twitter api?. I want all the advance functionality of twitter in my application.
Jalpesh Vadgama
  • 13,653
  • 19
  • 72
  • 94
5
votes
1 answer

Twitter4j: getting inconcistent authentication errors when invoking getFollowersIDs

I am using Twitter4j version 3.0.3. I am trying to pull follower id and using OAuth. I have been using Twitter4j for years and am relatively experienced with the framework. However something strange is happening: My program will run fine and then…
user1172468
  • 5,306
  • 6
  • 35
  • 62
5
votes
2 answers

OAuth::Unauthorized 401 Unauthorized for omniauth-twitter in rails

When I click on [http://127.0.0.1:3000/auth/twitter], I am getting OAuth::Unauthorized 401 Unauthorized error in rails. I am following Railscast video #241 for Twitter authentication with my rails application. I have googled a lot for it but could…
Vieenay Siingh
  • 867
  • 2
  • 17
  • 44
5
votes
1 answer

Count together facebook, twitter and g+ "shares" and store them in database?

I was working on my Word Press side and got this idea. Instead of implementing a "Like/Fav" feature to determine top articles, I would like to instead count together how many facebook shares, tweets and +1 that article received and once they are all…
Ilja
  • 44,142
  • 92
  • 275
  • 498
5
votes
3 answers

Using Twitter OAuth via API 1.1 without 3rd Party Library

I am facing trouble in using GET statuses/user_timeline with OAuth. I am new to twitter & programming. Most of the help I see in the documentation are for POST. Earlier I was using :…
qbektrix
  • 85
  • 2
  • 9
5
votes
1 answer

Fetch info using Twitter API v.1.1

I am not a professional, but currently, I am using the Twitter API V1 on my website to get basic data from a user's twitter account. I am using basic json to fetch content from https://api.twitter.com/1/users/show.json?screen_name=katyperry and it…
user2071196
5
votes
3 answers

ios - Expand table view cell like Twitter app

I want to have the same behavior as Twitter app when selecting a tweet that is : expanding the row and adding supplementary content. So this is not only a basic row resize. I think i need 2 different custom cells, so i did something like that : -…
Yaman
  • 3,949
  • 4
  • 38
  • 60
5
votes
1 answer

How to check if a user is following you on twitter?

I know how to create a "Follow me" button on Twitter, but I only want to display it if the user is not already following me. Is there a way to do this properly?
Jason
  • 14,517
  • 25
  • 92
  • 153
1 2 3
99
100