Re: OAuth Documentation Preview

2009-02-09 Thread atebits
> For an end user, OAuth is generally speaking much friendlier for pretty much > every application type, iPhone, desktop, or web. >From my chair, OAuth is a fantastic solution to authenticate *other web apps*. OAuth anywhere else, desktop, iPhone, laundry machine, makes me want to chip away a ho

Re: External submit box

2009-02-09 Thread Pliggs
Ok, I gave that a shot, but an error message saying it couldn't be posted. I set up an example at http://www.faqpal.com/twitter/insertTwitterMsg.php On Feb 9, 7:36 pm, Chad Etzel wrote: > You could modify your linked example by changing > > $twitter_username ='yourTwitterUserName'; > $twitter

friends timeline problem

2009-02-09 Thread Diane Slater
Does anyone else see the friends_timeline not working as expected? I have 5 tweets total (toucancrm) , 3 of which are replies. When I go to my home page on the web, I only see the non-replies, and the latest post (3 tweets). When I use the API to retrieve friends_timeline, I only get 2 tweets,

Re: OAuth Documentation Preview

2009-02-09 Thread Shannon Whitley
The consumer key and consumer secret are required to open the conversation with Twitter. How can this be handled with a desktop app unless the app talks to a web proxy? You wouldn't embed the key/ secret in the code (especially if it's open source). On Feb 9, 1:12 pm, Blaine Cook wrote: > On

Re: OAuth Documentation Preview

2009-02-09 Thread Cameron Kaiser
> For an end user, OAuth is generally speaking much friendlier for pretty much > every application type, iPhone, desktop, or web. Citation please :) -- personal: http://www.cameronkaiser.com/ -- Cameron Kaiser * Floodgap Systems * www.floodgap.com * ckai..

Re: OAuth Documentation Preview

2009-02-09 Thread Nicholas Moline
For an end user, OAuth is generally speaking much friendlier for pretty much every application type, iPhone, desktop, or web. The only applications that might possibly have a usability barrier (and as I said before, a quite slight one if you just make your own workaround as I just suggested) are c

Re: External submit box

2009-02-09 Thread Chad Etzel
You could modify your linked example by changing $twitter_username ='yourTwitterUserName'; $twitter_psw ='yourTwitterPassword'; to: $twitter_username =$_POST["username"]; $twitter_psw =$_POST["password"]; and adding a 'username' textbox and a 'password' textbox in the tweet form -Chad On

Re: OAuth Documentation Preview

2009-02-09 Thread funkatron
Those are all technical issues. I'm talking about usability issues for non-technical users. However, none of what I'd have to say is different than what I've already said on the topic, and I'm sure things will work out fine in time. -- Ed Finkler http://funkatron.com AIM: funka7ron ICQ: 3922133 S

External submit box

2009-02-09 Thread Pliggs
Hi, I am trying to find info about creating a submission box similar to what "TweetBurner.com" uses, but it won't be used for what they are using it for. Is it possible to have a form on my website that the user can enter their username/password and a message and have it post to their account Tw

Re: OAuth Documentation Preview

2009-02-09 Thread Nicholas Moline
Assuming Twitter keeps to a long/no expiration model for the OAuth tokens (as I understand it, it currently is set to not expire in the beta), or better yet, have a choice method for how long the token will last, for users accessing a site that accesses twitter, have a short expiration (an hour or

Re: Issues with following

2009-02-09 Thread pnoeric
I figured it out-- we weren't allowed to follow any more people, but the API wasn't giving us any more error messages. If we manually follow people, we get the error message (which, incidentally, is hosed on Mac Firefox-- I can file a separate bug report for that, if y'all want). So that's how I

Re: Help with If-Modified-Since and C#

2009-02-09 Thread rhysmeister
Hi Gustavo, The If-Modified-Since is a http header not a url parameter. You want to user the 'since' parameter... string url = "http://twitter.com/statuses/replies.xml?since="; + HttpUtility.UrlEncode("True, 09 Feb 2009 14:00:00 GMT") Also your http formatted date is wrong. Regards, Rhys

Re: Post message to a group using API

2009-02-09 Thread Alex Payne
That's not really the way Twitter works. Generally, you update your own account and people follow you. You post once, multiple people read. That's how messages on Twitter spread to more than one person. On Mon, Feb 9, 2009 at 13:59, Anikanchan Raut wrote: > I want to send a message to multiple T

Re: Post message to a group using API

2009-02-09 Thread Chad Etzel
http://jazzychad.net/twgroups/ may suite your needs... -chad On Mon, Feb 9, 2009 at 5:05 PM, Cameron Kaiser wrote: > >> I, too, am a newbie to this "Tweeter," tell me more! > > Naughty. :-P > > -- > personal: http://www.cameronkaiser.com/ > -- > Cameron Ka

Re: Post message to a group using API

2009-02-09 Thread Cameron Kaiser
> I, too, am a newbie to this "Tweeter," tell me more! Naughty. :-P -- personal: http://www.cameronkaiser.com/ -- Cameron Kaiser * Floodgap Systems * www.floodgap.com * ckai...@floodgap.com -- Eggheads unite! You have nothing to lose but your yolks. -- Adl

Re: OAuth Documentation Preview

2009-02-09 Thread funkatron
I still maintain that this works fine for knowledgeable web dev folks (who seem to be the people who get excited about OAuth), but *will* confuse users who don't understand the tech involved, and/or aren't comfortable jumping between apps. In addition, the process becomes even more problematic wit

Re: Post message to a group using API

2009-02-09 Thread Andrew Badera
I, too, am a newbie to this "Tweeter," tell me more! On Mon, Feb 9, 2009 at 5:01 PM, Anikanchan Raut wrote: > Sorry, I am a newbie to Tweeter. What is a DM? > > > On Mon, Feb 9, 2009 at 4:57 PM, Cameron Kaiser wrote: > >> >> > What I meant to ask was if I could post a message to multiple users in

Re: Post message to a group using API

2009-02-09 Thread Cameron Kaiser
> Sorry, I am a newbie to Tweeter. What is a DM? A DM is a Twitter direct message. -- personal: http://www.cameronkaiser.com/ -- Cameron Kaiser * Floodgap Systems * www.floodgap.com * ckai...@floodgap.com -- Proponents of other opinions will be merrily bea

Re: Post message to a group using API

2009-02-09 Thread Anikanchan Raut
Sorry, I am a newbie to Tweeter. What is a DM? On Mon, Feb 9, 2009 at 4:57 PM, Cameron Kaiser wrote: > > > What I meant to ask was if I could post a message to multiple users in > one > > go. > > If you mean multiple DMs, no. > > -- > personal: > http://www.c

Re: Post message to a group using API

2009-02-09 Thread Anikanchan Raut
I want to send a message to multiple Tweeter users. On Mon, Feb 9, 2009 at 4:57 PM, Alex Payne wrote: > > Is your intention to update on behalf of multiple accounts, or to send > a message TO multiple users? > > On Mon, Feb 9, 2009 at 13:48, Anikanchan Raut > wrote: > > What I meant to ask was

Re: Post message to a group using API

2009-02-09 Thread Alex Payne
Is your intention to update on behalf of multiple accounts, or to send a message TO multiple users? On Mon, Feb 9, 2009 at 13:48, Anikanchan Raut wrote: > What I meant to ask was if I could post a message to multiple users in one > go. Also, if I can do it through the API and not the web interfa

Re: Post message to a group using API

2009-02-09 Thread Cameron Kaiser
> What I meant to ask was if I could post a message to multiple users in one > go. If you mean multiple DMs, no. -- personal: http://www.cameronkaiser.com/ -- Cameron Kaiser * Floodgap Systems * www.floodgap.com * ckai...@floodgap.com -- And if I claim to

Re: Post message to a group using API

2009-02-09 Thread Anikanchan Raut
What I meant to ask was if I could post a message to multiple users in one go. Also, if I can do it through the API and not the web interface. Thanks. Nik On Mon, Feb 9, 2009 at 4:45 PM, Chad Etzel wrote: > > Define "group" ? There are many different interpretations. > -Chad > > On Mon, Feb 9,

Re: OAuth Documentation Preview

2009-02-09 Thread Cameron Kaiser
> > It's not clear to me how desktop apps will authenticate. _Will each > > author need to maintain a website to perform the authentication? _I > > don't see how it can be done otherwise. > > OAuth was designed with explicit desktop application support in mind. > To see how it works in practice,

Re: Post message to a group using API

2009-02-09 Thread Chad Etzel
Define "group" ? There are many different interpretations. -Chad On Mon, Feb 9, 2009 at 4:20 PM, Anikanchan wrote: > > I am trying to figure out if I can post a message to a group on > twitter using its API. If you can share any information in this > regard, it would greatly help and be appreci

Re: Post message to a group using API

2009-02-09 Thread Alex Payne
Twitter doesn't currently have the concept of groups - just users following other users. On Mon, Feb 9, 2009 at 13:20, Anikanchan wrote: > > I am trying to figure out if I can post a message to a group on > twitter using its API. If you can share any information in this > regard, it would greatl

Post message to a group using API

2009-02-09 Thread Anikanchan
I am trying to figure out if I can post a message to a group on twitter using its API. If you can share any information in this regard, it would greatly help and be appreciated. Thanks. Nik

Re: OAuth Documentation Preview

2009-02-09 Thread Blaine Cook
On Feb 9, 4:37 pm, Shannon Whitley wrote: > It's not clear to me how desktop apps will authenticate.  Will each > author need to maintain a website to perform the authentication?  I > don't see how it can be done otherwise. OAuth was designed with explicit desktop application support in mind. To

"nefarious bug"

2009-02-09 Thread hotmilkgt
*after two weeks of submitting my previous request* I've troubled shoot with her on this problem for 2 weeks now. we unfollow/refollowed each other about a dozen times. changed twitter clients on the iphone, followed using 40404 and using web only and reset up device update a few times. I conside

Re: Counting tweets without caching Twitter?

2009-02-09 Thread Chad Etzel
Ah, then it sounds like you need The Firehose (tm). Or ask the twitscoop guys how they're getting their data (which I am now curious about). -chad On Mon, Feb 9, 2009 at 1:50 PM, Jennie Lees wrote: > > Aye, that'd work if I knew the terms in advance, but I'm hoping to do > something more dynami

Re: Counting tweets without caching Twitter?

2009-02-09 Thread Jennie Lees
Aye, that'd work if I knew the terms in advance, but I'm hoping to do something more dynamic that could work for any term. Thanks for the suggestion though! Jen On Mon, Feb 9, 2009 at 4:23 PM, Chad Etzel wrote: > > If you are just looking for keeping track of the number of tweets, and > not con

Re: Request Limit

2009-02-09 Thread Jesse Stay
Thanks guys - it's good to have clarification on that. Jesse On Mon, Feb 9, 2009 at 11:24 AM, Alex Payne wrote: > > Yes, that method works whether you're whitelisted or not. > > On Sun, Feb 8, 2009 at 14:16, Abraham Williams <4bra...@gmail.com> wrote: > > I guess this could have been clearer bu

Re: Request Limit

2009-02-09 Thread Alex Payne
Yes, that method works whether you're whitelisted or not. On Sun, Feb 8, 2009 at 14:16, Abraham Williams <4bra...@gmail.com> wrote: > I guess this could have been clearer but I ran almost 3000 authenticated > requests and the rate_limit_status counted fine so it is probable that it > will count f

Re: avatar URL returned by API different then what twitter web page returns

2009-02-09 Thread Matt Sanford
Hi there, I think Cameron was asking since knowing if it changed or not, and if that change was via the API or web will help find the error. Since this seems like a bug from the description please open an issue at http://code.google.com/p/twitter-api/issues for it. Please include how

Re: Custom User Agent

2009-02-09 Thread Rob Ashton
Are you looking for this? http://apiwiki.twitter.com/FAQ#HowdoIget“fromMyApp”appendedtoupdatessentfrommyAPIapplication Regards, Rob On Feb 9, 9:04 am, "R.Sebastian" wrote: > I'm trying to fix a custom User Agent for a long time, using the API > in PHP and Curl. > > This is my script: > >    

Re: avatar URL returned by API different then what twitter web page returns

2009-02-09 Thread CodeWarden
Whether they did or didn't change it, the one that the twitter API is returning is the one that doesn't work. If they changed it, you would think that the one returned by the API would be the correct one, and perhaps the one accessed through the twitter web site might get cached. -Paul On Feb

Re: Help with If-Modified-Since and C#

2009-02-09 Thread Gustavo Melo
I try this too: HttpWebRequest http = (HttpWebRequest)WebRequest.Create(url); http.IfModifiedSince = DateTime.Now; This code will give to me only replies that was new on 24 hours behind? In this case too, return all (all days) replies that i had. On Mon, Feb 9, 2009 at 2:57 PM, Gustavo Melo wrot

Help with If-Modified-Since and C#

2009-02-09 Thread Gustavo Melo
Hello Guys,Som1 had some code snippets using If-Modified-Since in C#? Whatever, header or parameter... I want to get only replies TODAY starting of my parameter with some HOUR Example: I had 10 replies today (1 am -> 10 am) and i want only (5 am -> 10 am) I'm trying this: string url = "http://tw

Re: Custom User Agent

2009-02-09 Thread R.Sebastian
Thank you guys, But after seeying the rules for an own source, i discovered that it's not going to happen for my situation, considering it's a blog. Thanks for this URL tough (http://twitter.com/help/request_source), i'll keep that one in mind! Rene On Feb 9, 5:24 pm, Matt Sanford wrote: > Hel

Re: Custom User Agent

2009-02-09 Thread Mario Menti
On Mon, Feb 9, 2009 at 4:09 PM, R.Sebastian wrote: > > Sorry, i'm not that of a hero with API's e.d. > > I couldn't really find it at the F.A.Q., if you search for source i > can't find a matching answer. > > http://apiwiki.twitter.com/FAQ#HowdoIget"fromMyApp"appendedtoupdatessentfrommyAPIapplica

Re: Custom User Agent

2009-02-09 Thread Matt Sanford
Hello again, The entry in the FAQ is named " How do I get “from [MyApp]” appended to updates sent from my API application?": http://apiwiki.twitter.com/FAQ#HowdoIget%E2%80%9CfromMyApp%E2%80%9DappendedtoupdatessentfrommyAPIapplication And it asks you to request a source at: http://tw

Re: Counting tweets without caching Twitter?

2009-02-09 Thread Chad Etzel
If you are just looking for keeping track of the number of tweets, and not concerned about keeping them around for later data processing, you can poll the search API every so often for your terms of interest and just update your counters on the fly. pseudo code: let TOTAL = 0 let BUCKET = array

Re: Custom User Agent

2009-02-09 Thread Cameron Kaiser
> I searched for it in the F.A.Q. , but i could not get a real answer > when i searched for source. Also when i changed "curl_setopt > ($curl_handle, CURLOPT_USERAGENT, '*Flog (http://www.17031986.nl)'); " > into " curl_setopt($curl_handle, CURLOPT_SOURCE, '*Flog (http://www. > 17031986.nl)'); "

Re: Custom User Agent

2009-02-09 Thread R.Sebastian
Sorry, i'm not that of a hero with API's e.d. I couldn't really find it at the F.A.Q., if you search for source i can't find a matching answer. But, i tried chaning this: curl_setopt($curl_handle, CURLOPT_USERAGENT, '*Flog (http://www. 17031986.nl)'); To: curl_setopt($curl_handle, CURLOPT_SOURC

Re: Custom User Agent

2009-02-09 Thread R.Sebastian
Hey Matt, I searched for it in the F.A.Q. , but i could not get a real answer when i searched for source. Also when i changed "curl_setopt ($curl_handle, CURLOPT_USERAGENT, '*Flog (http://www.17031986.nl)'); " into " curl_setopt($curl_handle, CURLOPT_SOURCE, '*Flog (http://www. 17031986.nl)'); "

Counting tweets without caching Twitter?

2009-02-09 Thread Jennie Lees
Hi all, I'm looking for a way to find the number of tweets matching a certain term, both overall and as a time series (e.g. how many results between 11:00 and 12:00 - I want to monitor changes over time). I can't really see an obvious way to do this beyond making a local copy of every tweet and

Re: OAuth Documentation Preview

2009-02-09 Thread Cameron Kaiser
> It's not clear to me how desktop apps will authenticate. Will each > author need to maintain a website to perform the authentication? I > don't see how it can be done otherwise. Certain apps that have a web view potential could do it by redirecting to the provider, but yes, this is the point

Re: Custom User Agent

2009-02-09 Thread Matt Sanford
Hello, The "from web" is called a source in Twitter developer jargon. Check out the FAQ at http://apiwiki.twitter.com/FAQ for information on getting your own. Thanks; — Matt Sanford On Feb 9, 2009, at 01:04 AM, R.Sebastian wrote: I'm trying to fix a custom User Agent for a long ti

Re: OAuth Documentation Preview

2009-02-09 Thread Shannon Whitley
It's not clear to me how desktop apps will authenticate. Will each author need to maintain a website to perform the authentication? I don't see how it can be done otherwise. On Feb 6, 9:52 pm, Matt Sanford wrote: > Hi all, > >     We launched our OAuth code to production yesterday with employ

Custom User Agent

2009-02-09 Thread R.Sebastian
I'm trying to fix a custom User Agent for a long time, using the API in PHP and Curl. This is my script: http://www. 17031986.nl)'); curl_setopt($curl_handle, CURLOPT_POSTFIELDS, "status=$message"); curl_setopt($curl_handle, CURLOPT_USERPWD, "$username:$password

Re: OAuth Documentation Preview

2009-02-09 Thread Matt Sanford
Hi Jesse, Currently we don't have any plans to expire access tokens. That may change in the future but even if it does I suspect it will be a long duration. Thanks; — Matt Sanford On Feb 7, 2009, at 10:20 PM, Jesse Stay wrote: How long do the access tokens last? Are they permanent,

Re: Not able to make a request for a specific twitter id :(

2009-02-09 Thread Matt Sanford
Hi there, We have an open ticket on this bug (http://code.google.com/p/twitter-api/issues/detail?id=162 ) and it's slated to be fixed when we change the URLs for the next version of the API. Please visit the issue list and mark it with a star to keep track and let us know it's a priority