I am considering a project in which a publication's content is augmented by relevant, publicly available tweets from people in the area. But how could I programmatically find the relevant Tweets? I know that generating a structure representing the meaning of natural language is pretty much the holy grail of NLP, but perhaps there's some ...
hi,
I'm trying to use this:
https://twitter.com/account/rate_limit_status.xml
to check that i'm not going over the rate limiting on twitter. Problem is i'm making calls but the remaining-hits param does not seem to be reducing by as much as i'm calling:
<?xml version="1.0" encoding="UTF-8" ?>
<hash>
<reset-time-in-seconds type="inte...
I am making an iPhone application where you can submit your score to Twitter to share it (as a status update) currently using this code:
NSString *twitterURL = [NSString stringWithFormat:@"http://twitter.com/?status=My%20score%%20is:%%20%i%%20and%%20CharsPerMin%%20is:%%20%@", currentScore, charPerMin.text];
[[UIApplication sharedAppli...
I've been doing some research into using the Twitter API, and I'm not sure if I'm understanding it correctly. I want to get tweets from a specific user for a specific time-frame. From what I can tell, using the search function to specify a date range doesn't work because only the last 7 days are kept. I could just get the tweets and work...
Has identi.ca a streaming API like stream.twitter.com? If it has, is there any Python library to implement that? Now I'm using tweepy, but I doesn't seem to have identi.ca support for streaming API.
Thank you.
...
Hello All,
As an experiment I'd like to set up a coldfusion page that will pull and display the status updates from my own facebook account and twitter accounts that fall within an input date range; similar to tools like
http://orsiso.com/
http://www.threadsy.com/
and http://www.davidcramer.net/lifestream
I assume this will involv...
I want to build a simple q&a app on twitter. And I'm pretty familiar with the API. I was planning to use the "in_reply_to_status_id" attribute, but it looks like that's not available from the search API (...yet, anyways. It appears to be slated for v2).
Any suggestions?
Anyone know of a clever way to figure out if an @reply is in resp...
I am trying to transform some xml, which was returned by the Twitter Search api. It looks like the content element contains text that is escaped twice, Inception style. When I use the following in my XSL stylesheet it only unescapes it once:
<xsl:value-of select="atom:content" disable-output-escaping="yes" />
How do I perform the seco...
i am working on a project in php.
When we post something on twitter, i want to grab the users who have re-tweeted my tweet and store it in my database. I want to work in php and mysql.
If I post a question on my tweet, i want grab the answers and save the userinfo of all the users who gave the right answer.
Any suggestions on how t...
I'm writing some scripts for my boss that reads a specific user's tweets over the course of a week, and then dumps them into a formatted Tumblr post. Because he wants this done automated, I'm using cron to run the scripts periodically, but this is not the point of the post.
My question is, since the move to OAuth by the Twitter API, is ...
Hello all!
I wonder if anyone could help me to figure out how to get the amount, as a Java long number, of all retweets of me looking at a specific user, using either twitters API or Twitter4J.
The code below gives me only the last 100 retweets, using Twitter4J!
public static long getReTweets(){
long amount = 0;
Twitter tweeter =...
Hi all.
I am using Twitterizer 2. in general it does the job very well, but I have one thing missing.
I need to get all the followers of my user. and the method brings Twitterizer.TwitterFriendship.Followers(Token) only brings 100 of them.
in the twitter API I saw that you can use a cursor for "paging" you request, but I couldn't find th...
I have a string that may contains Twitter hashtags. I'd like to strip it from the string. How should I do this? I'm trying to use the RegExp class but it doesn't seem to work. What am I doing wrong?
This is my code:
var regexp = new RegExp('\b#\w\w+');
postText = postText.replace(regexp, '');
...
Also, how can i retrieve the results of the s hashtag search and see who all have retweeted that tweet in php. I have seen the api but did not find much info on hashtag search. did find other normal search but i wanted to search based on hashtag.
Suggestions please
...
How do I go about calling the twitter API in a way similar to http://socialmedia.duke.edu/#stayconnected
We are looking to do the same type of thing. I cannot figure out what is calling to twitter though in the code.
Any help would be greatly appreciated.
I can supply any needed details that you would need. I am using Wordpress but ju...
I've been looking at this for the last couple of hours. I've tried googling the problem and tried several edits but to no avail. I'm sure everything here is right but I'm still getting errors. Can someone whose worked with twitter Oauth please take a look at my code and see whats wrong.
<?php
$oauth_consumer_key = "OKuMtqCnndfee3sw"; ...
I'm linkifying @mentions in status messages returned by Twitter's API.
One of the tweets has a unicode character in it. Parsing the JSON (with either the json gem's JSON.parse or ActiveSupport::JSON.decode) returns a string that displays correctly, but the indices for the start and end of the @mention specified by the entity don't ma...
On a page load of my website, the Twitter area shows all three portions of the "tabs". When I click say on the #HVC "tab" it loads correctly and then all three of the "tabs" look correctly.
Any ideas on why it's not loading properly on load?
Is there any easier way to do what I am trying to do without so many js files?
...
I have tried to develope twitter profile image changing function with twitter API on iPhone.
But There are not libraries about this. I found jaanus / PlainOAuth and another libraries...
but I couldn't found. Anybody tell me how can I find or get information about this?
...
I am trying to build an application to help our marketing team manage a twitter competition. I had been using the Twitter search API, and I had assumed that it was working but it turns out that I am missing some tweets, due to limitations in the Twitter Search.
I have now switched over to trying to use OAuth to get into the API and pull...