[twitter-dev] what kind of cache does twitter is using?

2009-09-01 Thread mel_06
i know the question is just a bit far from the question that should be ask from this group but i really want to know what kind of cache does the twitter is using? and maybe some few explanation 'bout this kind og caching? thanks!

[twitter-dev] Re: Delete a Direct Message

2009-09-01 Thread Praveena Sarathchandra
yes.it is a curl. what is $handle variable? thanks for your quick reply On 9/1/09, Abraham Williams 4bra...@gmail.com wrote: How is process() making the requests? Is it with CURL? If so you should be able make it work by adding: curl_setopt($handle, CURLOPT_POST, TRUE); Abraham On Mon,

[twitter-dev] Re: Delete a Direct Message

2009-09-01 Thread Abraham Williams
Look for:$handle = curl_init(); $ch is often used instead of $handle. Make sure you add the curl_setopt() after the curl_init() and before the curl_exec(). Abraham On Tue, Sep 1, 2009 at 02:31, Praveena Sarathchandra pravee...@gmail.comwrote: yes.it is a curl. what is $handle variable?

[twitter-dev] Re: Whitelist DM limit Question

2009-09-01 Thread jmathai
POSTs count against the authenticating user's limit and are separate from your application's limit (whitelisted or not). POSTs include status updates and DMs. On Aug 31, 9:27 pm, Matthew matthew.s.kov...@gmail.com wrote: I'm developing an application and I need to find out how the DM limit

[twitter-dev] Re: Anyone updated jmathai OAuth library for 301s?

2009-09-01 Thread jmathai
I didn't know FOLLOWLOCATION didn't work for posts :). Looks like the only way to fix it is to manually follow the url in the header for 301/302s. http://github.com/jmathai/twitter-async/issues/#issue/20 On Aug 31, 8:44 am, davidddn david.dellan...@gmail.com wrote: Has anyone updated the

[twitter-dev] Re: what kind of cache does twitter is using?

2009-09-01 Thread Andrew Badera
The caching they use has evolved over the past couple years. There have been various allusions to and brief explanations of, often along the lines of why something on the front-end is acting or looking funky. Starling has been mentioned several times. It works over Memcached, and is native to

[twitter-dev] Re: Problem in past 48 hours: friendships/create severe lag or loss

2009-09-01 Thread Ben Eliott
I haven't tested right through yet but issues relating to the POST/ auth requests from over the w/e and yesterday look largely resolved for me with all actions queued up and executed in the end. Thank-you for getting onto that and sorting. Ben On 31 Aug 2009, at 20:07, PJB wrote:

[twitter-dev] Re: Whitelist DM limit Question

2009-09-01 Thread Matthew
So for example a user using your butler application can only broadcast a single DM to 250 people a day. Is that correct? Thanks, Matt On Sep 1, 1:01 am, Dean Collins d...@cognation.net wrote: if they are logging in as their account they can only send 250 Direct Messages per day.

[twitter-dev] Re: Whitelist DM limit Question

2009-09-01 Thread Dean Collins
per account - yes. but mytwitterbutler allows you to sign in with multiple accounts :) From: twitter-development-talk@googlegroups.com on behalf of Matthew Sent: Tue 1/09/2009 7:55 AM To: Twitter Development Talk Subject: [twitter-dev] Re: Whitelist DM

[twitter-dev] An issue with the API Method: favorites and the return value Following

2009-09-01 Thread fbparis
After some tests, it seems the return value for Following after a call to get favorites of a user is pretty bugged. For example in the same set of results where 2 distincts favorited statuses are from the same user, the following field can be different ! (one time false, one time true). The

[twitter-dev] Re: Using Twitter API by Nick Beam

2009-09-01 Thread Chris Babcock
Andrew Badera and...@badera.us wrote: TEXT AVALANCHE! RUN! On Sep 1, 1:22 am, Chris Babcock cbabc...@kolonelpanic.org wrote: Paste Bin - pastebin.com - is our friend. On Mon, 31 Aug 2009 18:49:26 -0700 (PDT) Pj pravee...@gmail.com wrote: Are there any Documentation to refer to?

[twitter-dev] Re: Using Twitter API by Nick Beam

2009-09-01 Thread Praveena Sarathchandra
sorry guys. Thanks a lot for your help Best Regards, Praveena J. Sarathchandra Freelance Web Designer/Developer [...@] pravee...@gmail.com [M] +94-77-6275266 [W] www.ideabox.lk On Tue, Sep 1, 2009 at 7:48 PM, Chris Babcock cbabc...@kolonelpanic.orgwrote: Andrew Badera

[twitter-dev] singing in to twitter with php

2009-09-01 Thread Termanater13
Im looking for a way to sign in while getting the data from http://twitter.com/statuses/user_timeline.format (copyed frim tha apiwiki). so I have to only set up one connection to twitter.

[twitter-dev] Redirect URL with own GET Parameters ?

2009-09-01 Thread solar22
Hello, it is possible to do this: My application use the follow request link: https://twitter.com/oauth/authorize?oauth_token=MY_TOKENarticleid=%ID it is possible that twitter redirect to page.php?id=%ID ? thanks.

[twitter-dev] api user rate limit from different ip addresses

2009-09-01 Thread NATO24
Sorry, I couldn't find the answer in any previous thread even though there are hundreds. Scenario: I create a jQuery plugin that pulls in my status updates (not authenticated using REST). Each person viewing my page (from different ip addresses) hits the API once every hour. Question: Does

[twitter-dev] Re: singing in to twitter with php

2009-09-01 Thread Peter Denton
this would work: http://apiwiki.twitter.com/Twitter-REST-API-Method:-account%C2%A0verify_credentials On Tue, Sep 1, 2009 at 11:08 AM, Termanater13 termana...@gmail.com wrote: Im looking for a way to sign in while getting the data from http://twitter.com/statuses/user_timeline.format (copyed

[twitter-dev] Re: api user rate limit from different ip addresses

2009-09-01 Thread Jim Renkel
If the API requests come from your server when users view your page, then, yes, your users will be collectively limited to 150 unauthenticated GET requests per hour, unless your site is white-listed. If your site was white-listed, it would get 20,000 unauthenticated GET requests per hour. You

[twitter-dev] Re: Redirect URL with own GET Parameters ?

2009-09-01 Thread Andrew Badera
On Tue, Sep 1, 2009 at 12:35 PM, solar22bubig...@yahoo.de wrote: Hello, it is possible to do this: My application use the follow request link: https://twitter.com/oauth/authorize?oauth_token=MY_TOKENarticleid=%ID it is possible that twitter redirect to page.php?id=%ID ? thanks. Using

[twitter-dev] Re: Redirect URL with own GET Parameters ?

2009-09-01 Thread Sandesh Devaraju
The way to accomplish this is by setting the articleid parameter to the oauth_callback URL when obtaining the request token[1]. http://twitter.com/oauth/request_token?...oauth_callback=http://yourdomain.com/methodarticleid=foo;... Note that the parameter value should be encoded as per [2]

[twitter-dev] Re: api user rate limit from different ip addresses

2009-09-01 Thread Andrew Badera
On Tue, Sep 1, 2009 at 2:48 PM, Jim Renkeljames.ren...@gmail.com wrote: If the API requests come from your server when users view your page, then, yes, your users will be collectively limited to 150 unauthenticated GET requests per hour, unless your site is white-listed. If your site was

[twitter-dev] Re: if you will be using the Geolocation API ...

2009-09-01 Thread Jim Renkel
My understanding is that all tweets will contain geo-location information: if the information was supplied when the tweet was created, that will be used; if no information was supplied, then the default location from the user's profile will be used. I, too, have several comments and questions.

[twitter-dev] Re: Redirect URL with own GET Parameters ?

2009-09-01 Thread Andrew Badera
... you'll want to URL encode everything after oauth_callback of course. ∞ Andy Badera ∞ This email is: [ ] bloggable [x] ask first [ ] private ∞ Google me: http://www.google.com/search?q=(andrew+badera)+OR+(andy+badera) On Tue, Sep 1, 2009 at 2:56 PM, Sandesh

[twitter-dev] Re: singing in to twitter with php

2009-09-01 Thread jmathai
If you're looking to use sign in with Twitter then follow these steps: http://www.jaisenmathai.com/blog/2009/04/30/letting-your-users-sign-in-with-twitter-with-oauth/ On Sep 1, 11:08 am, Termanater13 termana...@gmail.com wrote: Im looking for a way to sign in while getting the data

[twitter-dev] Re: Anyone updated jmathai OAuth library for 301s?

2009-09-01 Thread jmathai
I'm reconsidering adding support for POSTs. What's the usecase exactly? Does Twitter 302 POST requests? If so, what's gained by the application if it follows that? On Aug 31, 8:44 am, davidddn david.dellan...@gmail.com wrote: Has anyone updated the Jaisen Mathai OAuth library to support

[twitter-dev] Re: Anyone updated jmathai OAuth library for 301s?

2009-09-01 Thread davidddn
On Sep 1, 5:00 pm, jmathai jmat...@gmail.com wrote: I'm reconsidering adding support for POSTs.  What's the usecase exactly?  Does Twitter 302 POST requests?  If so, what's gained by the application if it follows that? Unless I am mistaken Twitter is still doing the 302 on POST as a

[twitter-dev] Re: Whitelist DM limit Question

2009-09-01 Thread Dean Collins
Ok if you prefer ... Tweetdeck has the ability to run multiple twitter accounts at the same time :) From: twitter-development-talk@googlegroups.com on behalf of Andrew Badera Sent: Tue 1/09/2009 8:45 AM To: twitter-development-talk@googlegroups.com

[twitter-dev] Re: if you will be using the Geolocation API ...

2009-09-01 Thread Raffi Krikorian
My understanding is that all tweets will contain geo-location information: if the information was supplied when the tweet was created, that will be used; if no information was supplied, then the default location from the user's profile will be used. actually - if there is no data passed in

[twitter-dev] Re: Stream API Count Parameter

2009-09-01 Thread Joel Strellner
That would be very nice, but at this time it looks like count is the only way to go. Twitter: +1 for a since_id -Joel On Tue, Sep 1, 2009 at 2:47 PM, Sameer sameer.kha...@gmail.com wrote: Hello, my question is in regards to the Stream API and how to deal with getting statuses when the

[twitter-dev] Re: Stream API Count Parameter

2009-09-01 Thread John Kalucki
The Twitter Streaming API presents statuses with Best Effort ordering with the possibility of duplicates. It does not, and cannot practically, order statuses. The since_id notion (a greater than predicate) cannot reasonably be applied to an unordered column. Thus the count parameter's weaker

[twitter-dev] Re: if you will be using the Geolocation API ...

2009-09-01 Thread Raffi Krikorian
hey jim. 1. the user.location is a completely separate entity (for now) implies that maybe sometime in the future it may be used, e.g., to provide a default geo-coded location for a tweet. I would suggest that if the user's profile location if ever geo-coded, that geo-code should be added

[twitter-dev] Re: Anyone updated jmathai OAuth library for 301s?

2009-09-01 Thread davidddn
On Sep 1, 6:41 pm, jmathai jmat...@gmail.com wrote: That's a valid point.  What do you think of following on GETs and throwing an exception for POSTs?  Not sure many people like to deal with exceptions (I prefer them). It would be helpful if someone from Twitter or who has done some extensive

[twitter-dev] Re: Anyone updated jmathai OAuth library for 301s?

2009-09-01 Thread fbparis
I've just coded this function which may help : function redirect_post($url,$data) { $ch = curl_init($url); curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 2); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, false);

[twitter-dev] Re: Website!

2009-09-01 Thread chepe263
Start with simple code. I'm using php and the Rest Api from twitter. At the moment i can put my friends_timeline on a php page and compare username and passwords to make a login. see ya!! (era mas para presumir que para ayudar jeje) chepe263

[twitter-dev] Can't enter full name, character limit

2009-09-01 Thread Martin Klein Schaarsberg
Hello, Under Twitter / Settings I've tried to enter my full name, Martin Klein Schaarsberg, but I can only enter Martin Klein Schaars. Is there a possibility to enter my full name or can the problem be fixed? The character limit is quite low in my opinion. There are quite a lot of people with

[twitter-dev] Re: Anyone updated jmathai OAuth library for 301s?

2009-09-01 Thread jmathai
One the issues is that the twitter-sync library utilizes multicurl which allows for parallel requests. Introducing this type of logic is tricky since the library allows you to access the results later and only at that point can we inspect the headers. Most people probably use it in a manner

[twitter-dev] Re: is this steet legal??

2009-09-01 Thread jmathai
Why wouldn't this be legal? On Sep 1, 7:22 pm, clearmedia ch...@clearmedia.com.au wrote: Hi everyone, Just wanting to know if this function is ok to connect and pull down twitter statuses. It works by the way! ?php function get_twitter_feed($screen_name){                         $xml=new

[twitter-dev] Re: is this steet legal??

2009-09-01 Thread clearmedia
not sure. I'm not using any authorization etc...?