I'm creating a twitter client without from scratch and on my 64bit machine at home i can post fine no problem, but on my 32bit laptop I'm getting a error 417 when I come to post a tweet.
I am able to read tweets fine, just posting that seems to be a problem I have also put in the following which some people said stop the error from accu...
Is there an easy way to convert the time stamp you get from twitter into unix time or minutes since now? I could parse through the string and convert everything myself but I'm hoping there is a way to convert that doesn't need that. Here is an example of a created_at element with a time stamp.
Sun Mar 18 06:42:26 +0000 2007
...
I am trying to post a url to twitter but the url is user generated and dynamic...
<a href="http://twitter.com/?status=[urlencode('I'd like to borrow this item @neighborrow')].">TWEET THIS REQUEST</a>
i started with that but its not catching the actual url- then i tried a few others but they seem to be for static urls
do i have to us...
I'm trying to use OAuth with .NET (DotNetOpenAuth) to send updates to a Twitter account via a web application. I understand the basic workflow of OAuth and Twitter.
Where I'm confused if is it useful in a server web application? I don't want any user interaction.
But how it seems after an application start, the request token needs to be...
I have a video blog for which I would like to track certain statistics, including stats from Google Analytics, Twitter, YouTube, Facebook, etc.
The problem is that the various stats are on different websites, which require different logins, etc. It takes a long time to actually view everything. I am looking for a way to be able to aggre...
I am writing a web app that needs Twitter user's profile photos only. I retrieve these by parsing the users/show XML unauthenticated API call (http://apiwiki.twitter.com/Twitter-REST-API-Method:-users%C2%A0show):
$twitterXML = simplexml_load_file("http://twitter.com/users/show/".$twitterUsername.".xml");
In my testing I have been hitt...
Hello,
I am parsing a JSON response (twitter api - cursor value) and what should be a string value seems to be a double value when I output it with PHP.
Any idea how I get the real string value?
...
i have a twitter web app that allows users to submit tweets from my site. however they have to re login everytime they submit a new tweet. is there a way to save the oauth session and don't prompt the login screen until users clear browser cache?
...
Most (all?) OAuth resources - both information about the protocol and code libraries for easily using them in your own applications - one seems to find on the internet seem to assume the application you are using it in is a web application.
I would however like to start using OAuth in my windows mobile Twitter client for interactions wi...
The Twitter Search api returns results in ATOM/XML format which look like this:
<author>
<name>username (Friendly Name)</name>
<uri>http://twitter.com/username</uri>
</author>
In my PHP I can get the name field as a variable, so it would look like this:
$names = "username (Friendly Name)"
But I want to use PHP to extract ...
i'm using tweetsharp to allow users to log into my site with their twitter account. the first time through, they need to give permission through twitter to access my site. fine. but this happens after the first time too. is there a way to avoid this?
...
I am creating a webapp that relies on following a status timeline from twitter in php
I am making a request to the twitter using the following API call:
$since_id is equal to a stored id based on the last parsed tweet.
$req_url = 'http://twitter.com/statuses/friends_timeline.xml?count=20&page=1&since_id='.$since_id;
I have no...
Hi
New to the Twitter API, but need to choose between 3 different Actionscript libraries available for the Twitter API.
Has anyone used either TwitterScript, SWX Twitter, or Tweetr and knows some of the pros and cons of each?
...
Hello,
I have a website with a database of users and I would like to allow them to display on their profile page their current tweet message (if they have a Twitter account).
After searching, I had seen this tool: http://juitter.com
It seems to be a little bit complex for just my needs.
I am working with Rails. Do you know a tool as s...
Hi I have a website that uses twitter api. The thing is that site becomes blank once the api limit is reached(I THINK) and then after a while it starts displaying the results.
I am running on GAE appspot.Because I have the appspot subdomain, does this mean that I can never be blacklisted?
Also what is the use of a twitter api, when I c...
I'm currently writing a program which uses Twitter to display your #nowplaying track from iTunes. As of now, we're using the basic Twitter authorization, however we'd like to use the oAuth implementation to make it better.
The language I'm using (AutoIt) does not really have the features needed to create a working oAuth system (unless a...
So, in my app, I am trying to use MGTwitterEngine to read from a certain user on Twitter, and then log the recent posts in an array. Is it possible to do this with this library? I am trying to do this without logging in. Any help would be appreciate, thank you!
...
Hitting the url http://twitter.com/home?status=<status_msg> takes us to the twitter login page and once logged in, the status is already filled in the input box, ready to be tweeted.
Is there a similar url for following somebody on twitter ?
something of the form http://twitter.com/follow?user=<user_to be_followed> so that whe...
Hi ,
I am trying to create a feed on a site which displays all the tweets which are about me so say if some one says " @oli hello how are you?" I would like it to display seperatley from my twitter feed.
is this possible if so could you try and explain how to do it using php
and also if u could provide a link that would be great
T...
I'm trying to load via Ajax the last post of a twitter account. I have the url, which is :
http://twitter.com/statuses/user_timeline/myuser.json?count=1
This works :
$.get("test.php", function(data){
alert("Data Loaded: " + data);
});
This doesn't even make a request if I monitor the console in Firebug :
$.get("http://twitter.co...