Re: [twitter-dev] Re: Snowflake: An update and some very important information

2010-11-10 Thread Tom van der Woerdt
1) Please don't, I don't want to have to convert everything back to integers within my code. I consider the string representation a hack around some issues with certain programming languages, and not an optimal solution. Wouldn't want this to become the default option. 2) No Tom On 11/11/10 6:3

Re: [twitter-dev] Identify Suspended Accounts

2010-11-10 Thread Tim Haines
Hey Dusty, It's currently assigned to @al3x, I'm sure he'll get to it some day. ;-) I have a list of about 28k suspended ids or deleted accounts, out of around 8m I have on file. I'm pretty sure there's maybe 5% or so false positives in there, as accounts become unsuspended but I don't have an

[twitter-dev] Re: Snowflake: An update and some very important information

2010-11-10 Thread SM
Hello. Couple questions: 1.) Are you planning on eventually eliminating the integer representation and only using strings for id's? 2.) If an application doesn't use Javascript to parse JSON (for example, YAJL-OBJC and NSNumbers in Obj-C), is it necessary to make any changes at all? Thanks. O

[twitter-dev] Re: Oauth "Incorrect Signature" or "Could not authenticate" error

2010-11-10 Thread DavidD
Thanks! This helped. I was adding the optional param PAGE=x (where x is a number) on the url for gets. And it wasn't being sorted. So the only problem I have left is why when I do a Http POST through Indy components to do a delete like https://api.twitter.com/1/statuses/destroy/999.xm

[twitter-dev] Identify Suspended Accounts

2010-11-10 Thread DustyReagan
If memory serves, Twitter is still returning suspended accounts in the followers API calls. I try to identify and mark these users in my own database so I don't display them to my end user, however this is a difficult and resource intensive task. One in which I have to worry about false positives.

[twitter-dev] Snowflake and yajl-objc

2010-11-10 Thread SM
Will the conversion to Snowflake affect clients using the yajl-objc framework? Does yajl-objc already parses 64-bit unsigned integers correctly? -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http://twitter.com/twitterapi Issues/Enhancements

[twitter-dev] Return Code 401 - can't see why I get this?

2010-11-10 Thread ShanghaiTimes
Hi, Hoping someone can point me in the right direction... I am almost there. Attempting to update my Twitter stream with the currently playing song and artist from my radio station. In the appropriate CFG file I have the correct codes and secrets. Checked them a zillion times .. but on debug, sti

[twitter-dev] Twitter seems to be ignoring since_id parameter for friends timeline (max_id is fine; just the since_id is the problem)

2010-11-10 Thread goodtest
The below call tries to get twitter post since: 2176149991981057 but I get the tweets for the first page. max_id is fine but just the since_id is the problem. Am I missing something? https://twitter.com/statuses/friends_timeline.json?count=100&oauth_consumer_key=[removed]&oauth_nonce=[removed]&oa

[twitter-dev] preg_replace a List name

2010-11-10 Thread Michael B.
I'm working on a module that will allow a user to pull up the tweets from a specified list. One of the issues I'm facing is converting the group name from the user inputted name to it's URL counterpart. For example, "It's all J!, baby" is called as "it-s-all-j-baby" via the URL. Does anyone have

Re: [twitter-dev] Optimizing Twitter Calls

2010-11-10 Thread yaemog Dodigo
On Wed, Nov 10, 2010 at 11:08 AM, mage26 wrote: > I am currently integrating Twitter with a small social network. I am > using PHP and the twitteroauth library. The idea is that a user can > sync their account to their Twitter. So when they post on their wall, > it will send a tweet and it will

[twitter-dev] Optimizing Twitter Calls

2010-11-10 Thread mage26
I am currently integrating Twitter with a small social network. I am using PHP and the twitteroauth library. The idea is that a user can sync their account to their Twitter. So when they post on their wall, it will send a tweet and it will post their tweets onto their wall. Currently, I am gatheri

[twitter-dev] Statuses Count / Tweets Count Off

2010-11-10 Thread Adam Fortuna
It looks like some users have recently had their Tweets count go down to 0 (or near there). Looks like it hasn't been happening for very long, but it's showing up with the incorrect statuses count on twitter (new/old) and through the API. Here's a few random people this is happening on: http://tw

Re: [twitter-dev] Announcing: Free Open Source Twitter Framework in PHP

2010-11-10 Thread M. Edward (Ed) Borasky
Excellent! You may have finally motivated me to learn PHP, MySQL, Javascript and JQuery. ;-) Seriously, though, have you given any thought to signing up with SUSE Studio and packaging this up as an appliance? -- M. Edward (Ed) Borasky http://borasky-research.net http://twitter.com/znmeb "A

[twitter-dev] Announcing: Free Open Source Twitter Framework in PHP

2010-11-10 Thread Adam Green
I have just published the first version of a Twitter aggregation database and tweet display framework called 140dev. The code is at: http://140dev.com/free-twitter-api-source-code-library/ This is written in PHP and MySQL on the server side, and JQuery and Javascript on the client side. The functi

Re: [twitter-dev] Perl developers, watch out for status IDs

2010-11-10 Thread Marc Mims
* Cameron Kaiser [101109 20:41]: > If you are on a Perl that does not have 64-bit int and you are not using > the stringified *_str fields, you may have overflowed the Perl precision > limit this morning, which bit TTYtter users hard. Just a friendly warning > to check your code, or use BigInt i

Re: [twitter-dev] Twitter streaming API using oauth with tracks that have spaces?

2010-11-10 Thread Taylor Singletary
Think of it this way.. a valid POST body already must contain application/x-www-form-urlencoded encoded values for the body to be valid. Normalizing spaces to %20, and avoiding "+" is also a best practice. OAuth kicks in after you've already constructed a valid POST body. Here's an example of trac

Re: [twitter-dev] API oauth friends_timeline request returning 401 status suddenly

2010-11-10 Thread Taylor Singletary
Hi Phillip, The specific error you're receiving, "Invalid / used nonce" actually indicates that your timestamp is not in sync with ours. Make sure that you're converting to UTC (regardless of local timezone) before generating the epoch time in seconds. You might not be accounting for daylight savi

Re: [twitter-dev] API oauth friends_timeline request returning 401 status suddenly

2010-11-10 Thread Tom van der Woerdt
[Just making a guess here] Is your server's clock correctly synchronized with NTP? Tom On 11/10/10 10:41 AM, Phillip du Plessis wrote: > Hi there, > > We have a web twitter application registered for our company to pull > our live friends_timeline feed into our website...this was working > fin

[twitter-dev] how to Post Tweets On Twitter using api in C# app

2010-11-10 Thread sandeepcec
Hi, I am trying to post tweets using following code. protected void Page_Load(object sender, EventArgs e) { string url = ""; string xml = ""; oAuthTwitter oAuth = new oAuthTwitter(); if (Request["oauth_token"] == null) {

[twitter-dev] API oauth friends_timeline request returning 401 status suddenly

2010-11-10 Thread Phillip du Plessis
Hi there, We have a web twitter application registered for our company to pull our live friends_timeline feed into our website...this was working fine after I changed from basic auth to the new oauth process to authenticate...but then on the 30th of October 2010 the feed suddenly started returning

Re: [twitter-dev] Re: Problem with uploading file to Twitpic

2010-11-10 Thread Mauro Asprea
http://twitpic.zendesk.com/forums/76890-solutions On Mon, Nov 8, 2010 at 11:57 PM, mlowicki wrote: > Does anyone know if there is forum/site dedicated for Twitpic API > issues/questions? > > On Nov 8, 4:19 pm, Matt Harris wrote: > > Twitpic i

Re: [twitter-dev] Twitter streaming API using oauth with tracks that have spaces?

2010-11-10 Thread Ciaran
Try ui-encoding them first, my understanding of the Twitter OAuth signature validation is that it is non-standard (although there appears to be debate about this) I suspect if you encode them first before signing the url it will start to work -cj. On Tue, Nov 9, 2010 at 6:11 PM, dan wrote: > I'v

Re: [twitter-dev] Re: Oauth "Incorrect Signature" or "Could not authenticate" error

2010-11-10 Thread Tom van der Woerdt
Looks like a Base String issue. Please check your Base String at . Tom On 11/10/10 12:55 AM, DavidD wrote: > On a get of the DIRECT MESSAGES (response) > > > Incorrect signature > /1/direct_messages.xml? > page=1&oauth_consumer_key=XX&oauth_nonce=9F8A26E