Questions tagged [tweets]

Tweets are text-based posts of up to 280 characters, created by users of Twitter, a social networking and microblogging service.

Tweets are text-based posts of up to 280 characters, created by users of Twitter, a social networking and microblogging service. Use this tag when your question is specifically about handling tweets. See also .

700 questions
4
votes
2 answers

Twitter Sentiment Analysis w R using german language set SentiWS

I want to do a sentiment analysis of German tweets. The code I use works fine with English, but when I load the German word list, all scores just result zero. As far as I can guess, it must have to do with the different structures of the word lists.…
user3368591
  • 43
  • 1
  • 4
4
votes
1 answer

How to make a user tweet into his/her twitter account from java web application

Hello I want to build an java web application in which I want the user to tweet on his account from my java application. Now when we are considering twitter4J the code which is it shows is using our own registered application on twitter dev portal.…
Nikhil Agrawal
  • 26,128
  • 21
  • 90
  • 126
4
votes
1 answer

How can I embed a specific Tweet but still style it?

I want to embed a Tweet with a specific tweet ID. I know you can use the 'Embed This Tweet' option to get pre-rendered HTML but I want to be able to style the tweet and have more control. How would this be possible with jQuery?
Crashdesk
  • 665
  • 8
  • 27
3
votes
1 answer

Wrap an a tag around a link in a tweet with php

Hello I need to add an a href tag around a link in a tweet in php for example if I have tweet like this: @username tweet body message http://t.co/sfr34s5 I need to turn this into this with php: @username tweet body message
Ben Paton
  • 1,432
  • 9
  • 35
  • 59
3
votes
1 answer

Unable to query Twitter API V2

I'm trying to query the Twitter API v2 with free research access via tweepy in Python and it throws me this error: "When authenticating requests to the Twitter API v2 endpoints, you must use keys and tokens from a Twitter developer App that is…
Rai
  • 63
  • 4
3
votes
2 answers

Is there any way to tweet something directly just with the click of a button without using tweetbox?

I m just looking forward to tweet something directly from a webpage without using the tweet box. Of course, after authentication. All i want is this. If the user is already logged in tweet directly if he clicks on the button. If not, provide an…
Sri
  • 568
  • 1
  • 6
  • 18
3
votes
2 answers

Post tweets using tweepy and Twitter API V2

I need my Twitter app to tweet some information, but something is going wrong. First, I created an app and tried this code to test credentials: auth = tweepy.OAuthHandler("CONSUMER_KEY", "CONSUMER_SECRET") auth.set_access_token("ACCESS_TOKEN",…
3
votes
3 answers

Twitter user_timeline API not showing retweets

I'm having a problem with integrating the Twitter API into my website to make a small feed of my latest tweets. I call the JSON API using this URL: http://twitter.com/statuses/user_timeline.json?screen_name=&count=2 I get a proper…
kettlepot
  • 10,574
  • 28
  • 71
  • 100
3
votes
1 answer

Tweeting a link

I am trying to add just a simple Twitter icon that will make the user share the link to his/her twitter account. I am seeing there are 2 ways to do this: Simple Tweet button on the page. As in: http://dev.twitter.com/pages/tweet_button or, The…
TS-
  • 4,311
  • 8
  • 40
  • 52
3
votes
1 answer

how to fix ''Tweet' object has no attribute 'created_at'' when using the twitter API?

I am doing some study about park evaluation, and I used twitter api to grab some tweets about parks in London. I can get the text, user id and followers etc., and cannot get the twitter_time. the error is ''Tweet' object has no attribute…
TCAO
  • 31
  • 2
3
votes
3 answers

twitter hashtag search

I am trying to search all tweets with a given hashtag (Using titanium appcelerator). I have a working code to search all tweets from a given user (for example @prayforjapan). Now I'm trying to get all the tweets from #prayforjapan. This isn't…
Tjekkles
  • 5,352
  • 8
  • 36
  • 53
3
votes
1 answer

Twitter streaming API not return full tweets

I used tweepy to write the code to streaming tweets, but it seems the tweets were truncated and the long tweets I got are not full, they are end with ... Is there any way that I could streaming the full long tweets?
tienan li
  • 33
  • 1
  • 4
3
votes
0 answers

How do I set up Python's Tweepy to collect only geotagged tweets for a certain location?

I'm absolutely new to Stack Overflow and fairly new to Python. After downloading Tweepy and using its basic function of searching keywords, I wanted to expand and search for only geotagged tweets based on a certain geographic location. I've found…
F. Wagner
  • 31
  • 2
3
votes
3 answers

Does the Twitter API allow filtering by username AND hashtag?

Can I get all the tweets of a particular user, in which a particular hashtag is used? I could just get the past 100 tweets then filter them on my end, but it would be much more convenient if Twitter could do the filtering on their end. Is this…
Jonathan
  • 32,202
  • 38
  • 137
  • 208
3
votes
1 answer

Change user timeline summary text

I'm using the Twitter User Timeline widget from here. I want to change the summary that reads "Tweets" in the header, to say "News". How do I do that?
Matt Joiner
  • 112,946
  • 110
  • 377
  • 526
1 2
3
46 47