Tweets are text-based posts of up to 140 characters, managed via the Twitter online social networking and microblogging service.

learn more… | top users | synonyms

0
votes
2answers
41 views

extract tweets from a text file (python)

Sorry, I am just trying to store 'id_str' from each tweet to a new list called ids[].. but getting the following error: Traceback (most recent call last): File "extract_tweet.py", line 17, in ...
1
vote
1answer
34 views

How to use the twitter4j lib to get the tweets of screen name?

I have seen a lot of tutorials for using this lib but i dint get a clear idea of it. Firstly how can i authenticate the twitter app??, is there any way i can hardcode the access token, so that the ...
0
votes
1answer
135 views

parse the place field in Twitter Tweets in Python

I am trying to parse the place field in Twitter Tweets. See https://dev.twitter.com/docs/platform-objects/tweets In particular I want to extract the country code from country_code, and the state from ...
0
votes
0answers
71 views

How to get latest tweet id, using python-twitter search API

I'm trying to find a way to NOT get the same tweets using search API. That's what I'm doing: make a request to the Twitter Store Tweets make another request to the Twitter Store Tweets, Compare ...
0
votes
1answer
24 views

How to show all tweeted data in XML file through twitter api?

When I've typed in browser address bar "https://api.twitter.com/1/users/show.xml?id=Valid_Twitter_USER_ID" then it will show a last tweeted xml data of my account. It's perfect for me, but I want to ...
-1
votes
0answers
37 views

Tweet feed show in C# Desktop Application [closed]

I create a widget for tweet feed in a web application but now I show perfectly this tweet feed in my C# windows desktop application with the help of browser control, but I need show this tweet feed in ...
1
vote
2answers
102 views

Get latest tweets through twitter search not working?

I'm using the following code to get the latest tweets from a specific hashtag $(document).ready(function(){ getLatestTweets(); function getLatestTweets(){ var url = ...
2
votes
1answer
168 views

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 ...
0
votes
2answers
69 views

SQL - Allowing a user

We're creating a twitter-like database using SQL. I'm having trouble creating a stored procedure for: Allowing a user to retrieve top-2 most frequently used hash tags in his/her tweets. UPDATE: This ...
0
votes
0answers
32 views

Displaying selected tweets on my website?

I'm trying to display on my site (hand-coded), the content of a tweet which only come from an tweet adress : as https://twitter.com/AUTHOR/status/ID_OF_THE_TWEET and I want it to be displayed almost ...
0
votes
0answers
112 views

Download tweets with R

I've been trying to download tweets with the twitteR package in a new PC: library(twitteR) z<-searchTwitter("#gold",n=1500) and I get the following error message: SSL certificate problem, ...
0
votes
0answers
28 views

Updating tweets on twitter

I am running following code. import twitter4j.Twitter; import twitter4j.TwitterException; import twitter4j.TwitterFactory; import twitter4j.auth.OAuthAuthorization; import ...
0
votes
0answers
12 views

remove " (quote) when search tweets

when search tweet without some word, use -word simply source : (https://twitter.com/search-home#) ex some tweets : there is word in this tweet there is noword in this tweet so we get second tweet. ...
0
votes
0answers
32 views

twitter bot not showing as retweeted on twitter feed

rather than using the RT prefix to a tweet, Twitter now provides a retweeted sign on retweeted tweets. I would like this to show up on my retweeted tweets on my twitter bot... i.e. the original user ...
0
votes
0answers
16 views

Twiiter feeds should show the hyperlinks on links

I am trying to get the latest tweet from twitter using the following code. It is returning me the tweet But if there is any link in the tweet That link should be click-able. It just returning the ...
0
votes
0answers
41 views

How to get Tweets which are more than a week old from Twitter?

For my research project, I need tweets containing a particular link(That is the search query). I have used Twitter APIs built with Python- both Twython and Tweepy (both REST and Streaming API). But ...
0
votes
1answer
81 views

Displaying latest Tweets on mywebsite .. User name not coming

Hi i have integrated twitter api to display recent tweets on my website . I can able to get the recent tweets but tweets does't contains user name(user who has tweeted on my wall) below is the code ...
2
votes
0answers
28 views

How to Tweet using Oauth in asp.net?

I want to develop a feature in my project where I should be able to tweet to twitter using oauth. I had tried using direct tweeting method as follows: https://twitter.com/intent/tweet?text=' + ...
1
vote
1answer
57 views

iOS6 problems to Tweet in UITabBarController using image taken from UIImagePickerController

After picking image from UIImagePickerController I want to Tweet it but there is error! Warning: Attempt to present <SLTwitterComposeViewController: 0x210d84b0> on <UITabBarController: ...
0
votes
0answers
22 views

iOS Tweet Banner? [duplicate]

I am making an app for a non-profit organization. I wanted to include a Tweeting banner that only shows the latest tweets by that specific user. I found the Developer Document area on their website, ...
0
votes
1answer
44 views

refresh div only when there is new update

i want to make a button like twitter when there is new tweets to refresh the main div like this how do i code it i a script like this ...
0
votes
1answer
167 views

How to use Twitter4j to show tweets

I have followed this tutorial http://www.javacodegeeks.com/2012/03/twitter-api-on-your-java-application.html and did the exact same thing. But I am getting an error which is shown below. Am I missing ...
0
votes
0answers
67 views

Automatically tweet when new file added to directory - PHP Autoindex

i am using using a php based directory indexer on http://popcorn.cripperz.sg. I am wondering if there is a php script out there thats automatically tweets upon new file added or automatically tweets ...
0
votes
2answers
92 views

How to send custom tweet with link and images in ios?

I know that how to send custom tweet using SLRequest and TWRequest but i didn't get link when i post message and link. I got only message. The code is: NSDictionary *dict = [[NSDictionary alloc] ...
0
votes
0answers
8 views

How to save the client's info into database who tweeted my links

Let's say I have a product page and each product has tweet button to share the url of each product in twitter . As soon the tweet counts of each link has been increased, I want to save the client info ...
1
vote
1answer
172 views

customize styling on Twitter embedded tweet

I am trying to simply add some css to my embedded tweets on my site This seems like it ought to be ridiculously easy, and it was actually working, then suddenly stopped. My code is: <blockquote ...
1
vote
0answers
47 views

Embedding a Twitter Web Intent

Is it possible to embed a Twitter web intent inline in a webpage? I'm working on an app for which the popup is too obtrusive. If this is possible, how would I go about it? Thanks for your time!
1
vote
1answer
65 views

twitter linkify android all @mentions

I want to give a link all twitter @mentions on mytweets app in android. If I click on @mentions I want to open another page about of the @mentions. This code do not work. Firstly I want to search ...
0
votes
0answers
44 views

Twitter API - CallBack (Display Two Tweets)

Trying Several things to get this to display Multiple Tweets (Im going for 2). Right now it works just fine, Nice and Simple. However I need it to display 2. I've tried messing with the callback, ...
0
votes
2answers
90 views

jQuery: Copying an Embedded Tweet's HTML

Say I have an embedded tweet inside a div: <div id="tweet"> <blockquote class="twitter-tweet"><p>A lion would never cheat on his wife. But a Tiger Wood.</p>&mdash; ...
0
votes
0answers
37 views

What is the way to get count of tweets with perticular keyword (# tag) from twitter?

I need to organize images of trending people on twitter, and i need to dynamically update position of images accordingly...
0
votes
0answers
27 views

All twitter feeds using twiiter id and twitter access tocken

I want display all tweets of user who logged in my app, i am saving his twitter unique id and access tocken . How can i read all twitter feeds using the above credentials ? now am using ...
0
votes
1answer
118 views

tweepy error while getting tweets

I'm collecting a large number of tweets via tweepy, but after a while, it stops with the following message: File "build/bdist.macosx-10.8-intel/egg/tweepy/binder.py", line 185, in _call File ...
0
votes
1answer
133 views

converting tweets to string in Python

I'm using tweepy to collect random tweets, and I want to filter out non-alphanumeric tweets. But in order to do the checking, I first need to convert the tweets to string. For example, from tweepy ...
0
votes
1answer
168 views

Can I aggregate Facebook Likes, Tweets, and Google Pluses?

I'm building a voting application on my new website, cabinethardware.org. I'd like the voting to be done in such a way that when someone votes for a project (to receive a $1000 rebuilding grant) that ...
0
votes
1answer
73 views

iOS tweet a hyperlink

Instead of adding the URL to the tweet like this: [tweetSheet addURL:[NSURL URLWithString:self.url]]; is it possible to have words highlighted blue and linked to a website when a user clicks on ...
0
votes
3answers
69 views

Identifying End-Of-Line in Regular expressions in R

I wrote a small code to extract hashtags from tweets in R m<-c(paste("Hello! #London is gr8. #Wow"," ")) # My tweet #m<- c("Hello! #London is gr8. #Wow") x<- unlist(gregexpr("#(\\S+)",m)) ...
1
vote
3answers
109 views

How do I extract hashtags from tweets in R?

I know this question had been asked here and here but there was a small problem when I tried it out: x<- str_extract("Hello peopllz! My new home is #crazy gr8! #wow", "#\S+") Error: '\S' is an ...
0
votes
0answers
42 views

PHP + posting links in tweets - need I check the length of the tweet?

Twitter use its own URL shortener - the result of the link "20 chars long link". What I am curious - I wanna share to Twitter with using PHP some of my articles - need I check the length of the link ...
2
votes
1answer
122 views

collecting random twitter conversations with criteria

I need to collect "sets" of tweets, i.e., twitter conversations for my research; The sets also need to satisfy the criteria of the number of tweets in it, and the number of participants in ...
0
votes
0answers
33 views

Ignoring retweets but still getting the correct count with twitter JSON API

If I use https://api.twitter.com/1/statuses/user_timeline.json?screen_name=RichieTerry&include_rts=1&count=2&callback=? The JSON I get in response has 2 result sets as per my count, ...
0
votes
0answers
98 views

iOS Twitter Framework - Is it possible to post a tweet without using the tweet sheet? [closed]

All the examples I'm seeing online are using the tweet sheet to post a tweet. I want to do post a tweet for the users, so I wouldn't want the tweet sheet or any UI that'll allow them to type to show. ...
0
votes
3answers
136 views

Twitter on ios - How is permission granted to do tweets?

I'm wondering how are permission granted? Is there a popup that asks for permission when a tweet is about to occur or is signing in with your twitter account in your settings page permission already? ...
0
votes
0answers
88 views

Automated Postings to Twitter Using Hard-Coded Token Values

I have written code to post to Facebook by hard-coding our Facebook page's permanent access token into a server-side emulated web form that exists only within our server-side programming, using HTML ...
0
votes
0answers
95 views

Automated Post of Image from Web Link to a Tweet on Twitter

I think what I am trying to do is impossible, but in case it is possible, just wanted to ask... In Facebook one can simply specify the URL of an image anywhere on the web, and it will post to your ...
2
votes
1answer
266 views

How to set up the HTTP Client to Get XML steps in Pentaho Kettle PDI

I would like to find a detailed way of using Kettle PDI 4.2.3 in getting Twitter Search results into a processable format. What I have up to now is the following steps: STEP 1:GENERATE ROWS Here on ...
-1
votes
3answers
122 views

How to send message to user twitter friends in android? [closed]

I want to post tweet message to twitter User friends .I not able to find tutorial . please help.
0
votes
0answers
36 views

How to see twitter DM source app?

It seems my twitter account has been attacked by some spam. Apparently I've sent a link to pron through DM's to some people. Since none of the apps I authorized seems fishy, there is a good chance ...
0
votes
1answer
292 views

Twitter API: Count number of Tweets since 0:00am this morning?

Is there an API to count the number of Tweets since 0:00am this morning for a particular user? I have tried the following Javascript but the closest I can get to it is the total number of tweets for ...
0
votes
1answer
289 views

iOS 5+: Read Twitter statuses/home_timeline for another user

In my app I want to display tweets from another user timeline. Is it possible at all? I can access user_timelines which doesn't require auth but for home_timelines I need to do auth but then how I ...

1 2 3 4