Re: [twitter-dev] What Is The Status of Twitter OAuth?

2009-11-30 Thread JDG
Did you not use gmail till it went out of beta too? :) On Mon, Nov 30, 2009 at 11:27, Dewald Pretorius wrote: > Last information I've seen said that Twitter OAuth is in public beta, > if I remember correctly. > > Has that status changed, as in, has OAuth been moved out of beta and > into product

Re: [twitter-dev] 401 API Authentication Error

2009-11-28 Thread JDG
That's my first bet -- the oauth_timestamps you used when your date is 2018 are newer than the ones you're using now, and that would probably return invalid timestamp / nonce errors. On Sat, Nov 28, 2009 at 16:34, Raffi Krikorian wrote: > that's intriguing - but you'll have to provide a lot more

Re: [twitter-dev] Handling rate limit

2009-11-18 Thread JDG
can you whitelist your IP? On Wed, Nov 18, 2009 at 19:05, Guru wrote: > Hi, > In my application I will recieve 100's of statusId as input and with > the statusId I need to find the user who posted it and other > information about the status. > So, I use > postedToAccScName = vzTwitter.showStatus

[twitter-dev] Re: Streaming API statuses/filter access increase request

2009-11-05 Thread JDG
Email a...@twitter.com with the info, and someone will get back to you. Also, please, in the future, read the archives before submitting stuff like this. There have been DOZENS of emails exactly like this posted in the past, including one just a few hours ago. On Thu, Nov 5, 2009 at 15:26, Darren

[twitter-dev] Re: Need Help

2009-11-03 Thread JDG
don't supply a callback function to twitter, and you'll get a pin. Why would you want to use Pin-based auth for the web, though? On Tue, Nov 3, 2009 at 03:22, mr.aaqib - IIUI wrote: > > Hi, > > I wanna know can we use PIN# authentication for web applications?? As > far as my understanding PIN#

[twitter-dev] Re: Mutual Follwers

2009-11-01 Thread JDG
The point I was trying to make that if "someone" should suggest it, that someone should be the someone who suggested someone suggest it. the math on that sentence was difficult. On Sun, Nov 1, 2009 at 21:14, JDG wrote: > I dunno, That's way too much to read ;) > > >

[twitter-dev] Re: Mutual Follwers

2009-11-01 Thread JDG
I dunno, That's way too much to read ;) On Sun, Nov 1, 2009 at 20:55, Leon Spencer wrote: > lol JDG. Okay. Does that mean it has been suggested? Or use that link to > suggest it? > > Thanks. > > > ------ > *From:* JDG > *To:* twitter-d

[twitter-dev] Re: Mutual Follwers

2009-11-01 Thread JDG
http://code.google.com/p/twitter-api/issues/list On Sun, Nov 1, 2009 at 20:31, gi wrote: > > Someone should suggest Mutual Followers to twitter. It would be quite > nice. > -- Internets. Serious business.

[twitter-dev] Re: Twitter Lists Need Optional Hashtag binding with list subscription

2009-10-29 Thread JDG
the only way right now to "direct" your tweets to a subset of users is to make them protected or to DM users. The whole point of tweeting, so far as I can tell, is to let everyone read it (at least, in the case of public tweets). On Thu, Oct 29, 2009 at 20:47, Harshad RJ wrote: > I am more inter

[twitter-dev] Re: Twitter Lists Need Optional Hashtag binding with list subscription

2009-10-29 Thread JDG
pull the whole list and do the filtering in-memory yourself. It's not a perfect solution, in terms of bandwidth or processing, but there it is. On Thu, Oct 29, 2009 at 17:22, Leon Spencer wrote: > I don't think a 3rd party app would work - with Oauth or like a TweetDeck. > The searches and updat

[twitter-dev] Re: Any response from Twitter?

2009-10-29 Thread JDG
comment on WHAT? On Thu, Oct 29, 2009 at 09:33, orian wrote: > > Can someone from the API team please comment on this? -- Internets. Serious business.

[twitter-dev] Re: No Cursor Data Returned

2009-10-27 Thread JDG
s a bug with the API and OAuth. > > > > On Oct 27, 1:46 pm, JDG wrote: > > > > > The cursor stuff is still somewhat new. Just because it's on the wiki > > > doesn't mean it was provided by Twitter (it's not). It may not have > been > > >

[twitter-dev] Re: No Cursor Data Returned

2009-10-27 Thread JDG
rint it begins with : > > > > > But then right after the tag the data ends. Its very odd and > its driving me nuts. > > On Oct 27, 1:40 pm, JDG wrote: > > are you sure they're not returned via the script? did you dump the data > you > > received using wi

[twitter-dev] Re: No Cursor Data Returned

2009-10-27 Thread JDG
are you sure they're not returned via the script? did you dump the data you received using wireshark or some other network monitoring tool? it could be that the $oauth class is simply not parsing it correctly. On Tue, Oct 27, 2009 at 11:31, TylerC wrote: > > I really don't get it now... I am mak

[twitter-dev] Re: Allow/Deny for Previously Authorised Apps

2009-10-27 Thread JDG
, 2009 at 11:11, CreativeEye wrote: > > I missed this in the 1st message: my app uses Twitter for login > purposes. So there is registration on my app. > How do I use the saved access token? > Yes I am saving the access token. yet i am not able to see where I > will use that.

[twitter-dev] Re: Allow/Deny for Previously Authorised Apps

2009-10-27 Thread JDG
are you saving the access token? On Tue, Oct 27, 2009 at 09:57, CreativeEye wrote: > > This is first app using OAuth. As far as I have known, once the user > has authorized an application, in the subsequent visits, he is not > shown the page "Allow/Deny" buttons but automatically redirected to >

[twitter-dev] Re: How to get related hashtags?

2009-10-26 Thread JDG
Whether or not two hashtags are related or similar is really in the eye of the beholder and as such, should be up to you to implement an algorithm to come up with your own relationships. On Mon, Oct 26, 2009 at 12:00, Legend wrote: > > Hi, > > I was wondering if there's a way to get related hash

[twitter-dev] Re: XML parsing error when using JSON search.twitter.com/search.json?

2009-10-24 Thread JDG
OH. I see what you're saying now. Again, the problem isn't with "indonesia" ... it's the fact that you're putting "&" in an xml tag. You need to change it to "&" On Sat, Oct 24, 2009 at 11:55, TrixJo wrote: > > JDG, > >

[twitter-dev] Re: XML parsing error when using JSON search.twitter.com/search.json?

2009-10-24 Thread JDG
You sure that's where the error is? there have been numerous reported problems with PHP's JSON decoder that it doesn't handle the very large numbers of Twitter's IDs well. On Sat, Oct 24, 2009 at 11:11, TrixJo wrote: > > Hello > > I am trying to search twitter content using a mySQL/PHP entry in

[twitter-dev] Re: What to do with the access token after you've received it

2009-10-22 Thread JDG
i was thinking but i thought this was the whole > point of oauth to not need someones pass to authenticate with an app. > Oauth is basically just a setup where it authenticates an app to use > an account, but its not something that I can use to implement a full > login system to my own

[twitter-dev] Re: What to do with the access token after you've received it

2009-10-21 Thread JDG
You could have the user sign in with their username and password and make a call to account/verify_credentials. If it returns 200, you know you can get the access token. On Wed, Oct 21, 2009 at 18:41, shawninreach wrote: > > Ok so you guys are saying store the access token in the db. Im getting

[twitter-dev] Re: What to do with the access token after you've received it

2009-10-21 Thread JDG
Access Tokens, in Twitter's case, do not expire. According to the OAuth spec, they MAY expire, but do not have to. In Twitter's case, it seems they have decided to keep an access token valid until the access granted by said token is explicitly revoked by the user. Fetching a new access token in eve

[twitter-dev] Re: Error in Creating Friendships

2009-10-21 Thread JDG
you should probably change your password since you posted it for the world to see. On Wed, Oct 21, 2009 at 16:05, RTuosto wrote: > > anybody else getting this problem? > > On Oct 21, 10:47 am, RTuosto wrote: > > I am having a problem using the create friendship method in the API. > > No idea wh

[twitter-dev] Re: /account/rate_limit_status.xml returning wrong date format

2009-10-21 Thread JDG
I would check the Accept-Language header coming from both boxes, as it COULD be used to inform the server as to what format to return. That said, it SHOULD be returning either Unix timestamps or easily parseable ISO formats. On Wed, Oct 21, 2009 at 09:05, cadams500 wrote: > > Hi, > > I have a ve

[twitter-dev] Re: Nero 9 - FULL Version - [Precracked] 51MB ONLY!

2009-10-19 Thread JDG
exactly, and deleting from the group won't affect those of us that read it via email. once it's deleted it'll still be in our inboxes. it's not that big a deal. just delete the message. On Mon, Oct 19, 2009 at 14:36, Marco Kaiser wrote: > you probably wouldn't believe how much spam we delete bef

[twitter-dev] Re: Post comment without going to twitter page

2009-10-19 Thread JDG
Use Basic Auth. You won't be able to state that your message came "from ", but you will be able to authenticate and post a message with one call. On Mon, Oct 19, 2009 at 05:36, rishabh wrote: > > Hi! > > I want to post comment on twitter deck without going to twitter site. > > Is there an API to

[twitter-dev] Re: What is included In the "Queries are limited 140 URL encoded characters." restriction?

2009-10-17 Thread JDG
You do realize that Twitter's employees take the weekends off, too, just like the rest of us? Please don't bump threads. On Sat, Oct 17, 2009 at 20:39, leonspencer wrote: > > And still waiting on a response. More information from a associate: > > Subject: Re: Do you know what is being counted to

[twitter-dev] Re: Download Avira AntiVir Premium v9.0.0.446 with 2011 valid

2009-10-16 Thread JDG
dammit al3x! On Fri, Oct 16, 2009 at 06:39, Kola zone wrote: > Download Avira AntiVir Premium v9.0.0.446 with 2011 valid > ** > http://bit.ly/2dWFN5 > http://bit.ly/2dWFN5 > > Download Avira AntiVir Premium v9.0.0.446 with 2011 valid > -- Internets. Serious business.

[twitter-dev] Re: url fail

2009-10-15 Thread JDG
with the i at the beginning, i thought it was the Spanish upside down exclamation point and read it aloud as "defibalaTOR" ... i need help. On Thu, Oct 15, 2009 at 16:31, Adam Cloud wrote: > I was most disturbed by his deadlined transfer rate as shown in the top > right of his screenshot..

[twitter-dev] Re: http return 0

2009-10-15 Thread JDG
i think http 0 in curl just means the connection failed. should probably just retry. On Thu, Oct 15, 2009 at 14:44, Scott Haneda wrote: > > I have a pretty simple function I made to curl a url against twitter. I am > whitelisted. I call a url once every 15 seconds, about once an hour, I get >

[twitter-dev] Re: Checking if a user exists by email

2009-10-14 Thread JDG
no. On Wed, Oct 14, 2009 at 09:50, HAR HAR wrote: > > There was a post on this group called "API Method for checking if a > user exists?" a while ago. The method for checking if a user exist > described there no longer works. Is there a way for me to use the API > to verify if an email address i

[twitter-dev] Re: /users/show.xml? doesn't return xml string

2009-10-13 Thread JDG
How are you showing $query? If you're just doing print $query in a browser, the XML wouldn't show up in the window. You could either set the Content-type: text/plain before outputting $query, or by checking view source. On Tue, Oct 13, 2009 at 22:37, ArnieLapinig wrote: > > Hello, > > I hope som

[twitter-dev] Re: Duplicate Tweets

2009-10-13 Thread JDG
form? There's valid uses for recurring content > > within reason. It's not realistic to ask users to come up with 52 > > unique headlines, hunt down the associated link and fire up the laptop > > prior to happy to hour every Wednesday at 6:00 in order to get a > >

[twitter-dev] Re: Duplicate Tweets

2009-10-13 Thread JDG
ws and > box cutters, and some people use chain saws and box cutters to murder > other human beings? > > Dewald > > On Oct 13, 5:31 pm, JDG wrote: > > Yes, and should be treated as such. I personally detest all those stupid > > twitter-based games. Point is, with Tw

[twitter-dev] Re: Duplicate Tweets

2009-10-13 Thread JDG
Yes, and should be treated as such. I personally detest all those stupid twitter-based games. Point is, with Twitter's userbase, some get through the cracks. Don't like it, report it. This is like complaining that cops only pull over SOME speeders. Yeah, some are going to get through the cracks. O

[twitter-dev] Re: Duplicate Tweets

2009-10-13 Thread JDG
> > Wrong. Basic Authentication will obviously ALWAYS be an option for > desktop clients, regardless of whether or not it is via API. > When are you going to turn off Basic Auth? We would like to deprecate Basic Auth at some point to prevent security issues but no date has been set for that. We w

[twitter-dev] Re: Duplicate Tweets

2009-10-13 Thread JDG
duplicate content," they ruled "recurring tweets" as off-limits this > Monday in a communication to me. > > And in a very patient attempt to be a good Twitter application > developer, I complied and am deactivating that feature. NOW THAT I > KNOW. > > Dewal

[twitter-dev] Re: Duplicate Tweets

2009-10-13 Thread JDG
s > out-of-bounds for Twitter to bypass such a cooperative system, and > instead just carte blanche ban a particular app feature that has many > legitimate uses. > > > On Oct 13, 6:32 am, JDG wrote: > > They can still check for duplicate tweets, and can still suspend accounts

[twitter-dev] Re: Duplicate Tweets

2009-10-13 Thread JDG
They can still check for duplicate tweets, and can still suspend accounts violating the TOS, regardless of client. On Mon, Oct 12, 2009 at 23:23, PJB wrote: > > > I worried about this. Doesn't Twitter realize this will just shift > things to desktop apps which they have less control over?!? > >

[twitter-dev] Re: OAuth wed & desktop feedback

2009-10-12 Thread JDG
ss would be to change your password. But, whoever > stole your phone/laptop could have changed your password first (if the app > was using Basic auth), and you’re locked out of your account. > > > > So, a way to log in with basic auth and grab a OAuth token would can still

[twitter-dev] Re: OAuth wed & desktop feedback

2009-10-12 Thread JDG
But it completely subverts the point of OAuth, because it lets a third party have your password. Why even use OAuth in that case? On Mon, Oct 12, 2009 at 19:01, Zhami wrote: > > > > On Oct 12, 5:44 pm, Sebastian wrote: > > The solution for OAuth on Mobile and Desktop is easy: > > > Let me rewr

[twitter-dev] Re: where will we be next year

2009-10-10 Thread JDG
that's more philosophical than anything. On Sat, Oct 10, 2009 at 09:00, thomas cavanaugh wrote: > where will twitter be in one year? > > > On Sat, Oct 10, 2009 at 12:44 AM, Michael Steuer wrote: > >> >> Is there a development question here? >> >> >> >> >> On Oct 9, 2009, at 7:16 PM, tom wrot

[twitter-dev] Re: where will we be next year

2009-10-09 Thread JDG
how does this have anything to do with twitter development? On Fri, Oct 9, 2009 at 20:16, tom wrote: > > With the 2010 elections coming soon,and an angry electorate I can see > twitter playing an unheard of influence on these elections.. as i see > it the tasks will be KEEP IT ACCURATE,keep it

[twitter-dev] Re: Twitter Geo stuff

2009-10-09 Thread JDG
it will not (at least, that's what I've seen on the list thus far.) On Fri, Oct 9, 2009 at 09:18, Axthelm wrote: > > On that note, is it known if the setting to opt in will be exposed in > the account/update_profile API? > > On Oct 4, 4:13 am, Rich wrote: > > TheGeotag is only populated firstly

[twitter-dev] Re: Noise-tweet regex repository

2009-10-09 Thread JDG
Don't paste them here. Please go to the link he posted above. Pasting them here would be, in effect, noise. On Fri, Oct 9, 2009 at 03:22, Sam Street wrote: > > ps. thats not the actual string. I'll paste actual noise here as I > discover it though > > On Oct 9, 10:22 am, Sam Street wrote: > > P

[twitter-dev] Re: Get list of messages

2009-10-08 Thread JDG
don't you mean http://apiwiki.twitter.com/Twitter-REST-API-Method%3A-statuses-user_timeline On Thu, Oct 8, 2009 at 19:17, monkeyvu wrote: > > Hi all, > > I want to get the list of status messages that I posted to Twitter but > I can't find the API to do that. Anyone knows this? Please help me. >

[twitter-dev] Re: Ignoring OAuth application authorization page once causes following pages not be able to load up

2009-10-07 Thread JDG
it didn't waste a ms of my time. it only wasted your time by responding. why do people get so angry about things they see on the internet? it's the easiest thing on the planet to ignore. On Wed, Oct 7, 2009 at 13:17, Michael Steuer wrote: > Is this a joke? Why waste 100s of people’s time?! > >

[twitter-dev] Re: [twitter Dev] Failed to validate oauth signature and token

2009-10-07 Thread JDG
That's simply for generating the signature base string. it does not matter when you're actually sending the parameters. On Wed, Oct 7, 2009 at 05:33, ryan alford wrote: > Here is the documentation on ordering the parameters... > http://oauth.net/core/1.0#anchor14 > > Section 9.1.1 > > Parameters

[twitter-dev] Re: Twitter rejecting show_user request

2009-10-06 Thread JDG
Are you sure that the ID in question exists? On Tue, Oct 6, 2009 at 16:58, ArnieLapinig wrote: > > Hello, > > Just started developing a Twitter app... I'm using a php script with > CURL to issue a show_user request, and i'm getting this response: > > Warning: file_get_contents( > /users/show.x

[twitter-dev] Re: Imagin

2009-10-06 Thread JDG
it sounds like you're asking for lists, which has just been announced. On Mon, Oct 5, 2009 at 05:05, pooji...@me.com wrote: > > firstly i'm sorry I'm not a developer of sorts :) > > I doubt this is the right area but perhaps you can pass it on > > Feature Request: > > when your using twitter mor

[twitter-dev] Re: Search API Not from a User

2009-10-02 Thread JDG
add either -from:user or from:-user to the query (i can't quite remember which). On Fri, Oct 2, 2009 at 06:44, Greg wrote: > > Is there a way to use the Search API to not return results from a > selected user? -- Internets. Serious business.

[twitter-dev] Re: how are the ten trends born?

2009-10-01 Thread JDG
it's MAGIC! On Thu, Oct 1, 2009 at 09:20, Martin Dudek wrote: > > Good morning > > wonder if somebody knows how twitter determines the ten trends it > declares every five minutes? Is this a pure word/phrase frequency > algorithm or some more complexity behind. > > Thanks > > martin > -- Inter

[twitter-dev] Re: Stream missing statuses from certain users

2009-09-30 Thread JDG
the streaming API, if i recall correctly, is simply a random sampling of users. it could be that those users are simply not collected in said sample. I may be wrong though. On Wed, Sep 30, 2009 at 14:21, Sameer wrote: > > Hello, I have been using the stream API for quite some time and I > have

[twitter-dev] Re: Protect My Tweets feature and effect on replies to tweets

2009-09-29 Thread JDG
How are you getting the replies? From the streaming or search APIs, yes, it's to be expected. If you're getting it from your timeline, you have to follow that user. On Tue, Sep 29, 2009 at 13:32, kprobe wrote: > > I run a game called Tweet_Words via a server app which tweets out > clues every mi

[twitter-dev] Re: Verify_Credentials & Flash

2009-09-29 Thread JDG
I don't think getting rid of the 401 is wise. That said, I think that they could probably (and SHOULD probably) get rid of the WWW-Authenticate header that is sent by the server when that 401 is sent, as that is the header that causes browser pop ups. Twitter, what say you? You would keep your exi

[twitter-dev] Re: Question about longevity of geo-coded tweets

2009-09-29 Thread JDG
Right, and I see where Twitter's coming from. I'm speaking more to API consumers that wish to persist the API/Geocode data on their own systems. On Tue, Sep 29, 2009 at 12:19, Raffi Krikorian wrote: > its not a matter of caching the tweets, per se - its a matter of storing > extremely sensitive

[twitter-dev] Re: Question about longevity of geo-coded tweets

2009-09-29 Thread JDG
I assume you're caching the tweets in a local DB or something in order to provide histories of > 3200 tweets. For now, can't you also just cache the geocode info? On Tue, Sep 29, 2009 at 12:11, jim.renkel wrote: > > As an alternative to a hard coded 7 days for the interval to the > removal of ge

[twitter-dev] Re: How do I get the user_id for a screen_name WITHOUT

2009-09-29 Thread JDG
Touche, salesman. Touche. On Mon, Sep 28, 2009 at 23:14, Chad Etzel wrote: > > On Mon, Sep 28, 2009 at 11:45 PM, JDG wrote: > > http://twitter.com/users/show.json?screen_name=al3x > > That is a rate-limited call. > > I'm afraid the answer is, "you can't.&

[twitter-dev] Re: How do I get the user_id for a screen_name WITHOUT

2009-09-28 Thread JDG
http://twitter.com/users/show.json?screen_name=al3x On Mon, Sep 28, 2009 at 21:10, Andy Freeman wrote: > > using a rate-limited call or one with authentication. > > I'd be (mostly) satisfied with an analog to http://twitter.com/al3x in > terms of user-id. > -- Internets. Serious business.

[twitter-dev] Re: About the oneforty application directory

2009-09-28 Thread JDG
Unfortunately, best as I can ascertain, that would violate the OAuth spec (I may, of course, be wrong -- I often am :-) ). There are RW tokens and RO tokens, but no Auth-only tokens. The best you could hope for, given the current state of the spec, would be for an app to simply get, then discard, t

[twitter-dev] Re: Strange 401 errors when having dot in the status update

2009-09-27 Thread JDG
>From the OAuth spec: 5.1. Parameter Encoding All parameter names and values are escaped using the [RFC3986] (Berners-Lee, T., “Uniform Resource Identifiers (URI): Generic Syntax,” .)percent-encoding (%xx) mechanism. Characters not in the unreserved character

[twitter-dev] Re: Accessing User status and other information by email ID

2009-09-27 Thread JDG
It is not. On Sat, Sep 26, 2009 at 03:16, Alok wrote: > > Hi Twitter API experts, > > By going through the REST/SEARCH API, it seems that there no option to > get information from twitter using user's email ID. > > Could you please let me know if it is possible to call API using email > ID inste

[twitter-dev] Re: 401 Unauthorized error while posting status with Unicode characters (non english characters)

2009-09-26 Thread JDG
That's true -- %5BB6, for example, is NOT a UTF-8 encoded codepoint for a character. It's Unicode (or UTF-16). On Fri, Sep 25, 2009 at 20:54, Mageuzi wrote: > > Hello, > I had this same problem. I had to convert all multi-byte characters > into their individual bytes. > So, for example, for the

[twitter-dev] Re: SERIOUS Problem With Cursors In JSON Followers/Friends Ids

2009-09-25 Thread JDG
and it would also break everyone who CAN handle 64 bit ints and expects results in decimal numeric format. On Fri, Sep 25, 2009 at 16:01, Richard wrote: > > Can this not be returned as hex or base64? > It would save bandwidth for Twitter (and us) and make it a string > people could convert it to

[twitter-dev] Re: Twitter+Oauth on iPhone: How does one logout?

2009-09-23 Thread JDG
There's no logout for OAuth, per se, as I understand it. It's just a matter of not sending the tokens any longer. On Wed, Sep 23, 2009 at 12:25, joeygreen...@gmail.com < joeygreen...@gmail.com> wrote: > > I'm implementing Twitter+Oauth on the iPhone using > http://github.com/bengottlieb/Twitter-

[twitter-dev] Re: OAuth /statuses/update.xml returns 401 Invalid/Expired Token

2009-09-22 Thread JDG
http://oauth.net/core/1.0a#auth_header According to the OAuth spec, values in the Authorization header: For each parameter, the name is immediately followed by an '=' character (ASCII code 61), a '"' character (ASCII code 34), the parameter value (MAY be empty), and another '"' character (ASCII c

[twitter-dev] Re: How to append source parameter in curl ?

2009-09-22 Thread JDG
You can't. You *must* use OAuth to change the source parameter, which precludes using cURL. On Tue, Sep 22, 2009 at 01:29, Ershad K wrote: > > Dear Sir, > I'm new to twitter API and curl. Could you please tell me how to > edit so that i could put my application's name in 'From > app_name'

[twitter-dev] Re: Twitpocalypse II Update - Scheduled for Tuesday 9/22 at 11:30am PST

2009-09-21 Thread JDG
Agreed, but then they're probably aware of the situation and have made plans to mitigate if they're going to be attending TC140. On Mon, Sep 21, 2009 at 14:52, Caliban Darklock wrote: > > On Mon, Sep 21, 2009 at 1:42 PM, JDG wrote: > > > > Why wouldn't sai

[twitter-dev] Re: Twitpocalypse II Update - Scheduled for Tuesday 9/22 at 11:30am PST

2009-09-21 Thread JDG
Why wouldn't said developer partners have updated their code 2 weeks ago when this was announced? On Mon, Sep 21, 2009 at 14:22, Michael Steuer wrote: > > With all your developer partners at TC140 tomorrow??? > > > > > On Sep 21, 2009, at 11:36 AM, Ryan Sarver wrote: > > >> To give everyone ano

[twitter-dev] Re: Detecting "denied" condition on Twitter oAuth page

2009-09-16 Thread JDG
If they deny, you shouldn't get an OAuth authorization token back. Can't you just check for that? Am I mistaken here? Do you always get a token back that just happens to be invalid if they deny? On Wed, Sep 16, 2009 at 14:08, New guy wrote: > > Hi, while testing oAuth consumer code, I noticed t

[twitter-dev] Re: statuses/mentions vs search/screenname

2009-09-16 Thread JDG
included in statuses/mentions? > > Joseph > > Hwee-Boon Yar wrote: > > Along the same line, updates from accounts considered spamming > > wouldn't be included in search results too. > > > > -- > > Hwee-Boon > > > > On Sep 17, 12:07 am, JDG wrote

[twitter-dev] Re: statuses/mentions vs search/screenname

2009-09-16 Thread JDG
I believe that search does not return statuses of protected users (even when authenticated, though I may be wrong and should be corrected if I am). In that case, yes, you could potentially receive fewer results than statuses/mentions. On Wed, Sep 16, 2009 at 09:56, Joseph Cheek wrote: > > Quick

[twitter-dev] Re: ???????

2009-09-12 Thread JDG
What would that tag do to prevent needing 2 requests? On Sat, Sep 12, 2009 at 18:07, mostafa farghaly wrote: > > hi guys > i think we need this tag to send direct messages easily, > as far as i know i can send direct messages to the buddies i follow > and they follow me in the same time , and th

[twitter-dev] Re: getting error "Unexpected oauth_verifier parameter" after requesting access token

2009-09-12 Thread JDG
Well ... the most obvious thing to do would be to get rid of the unexpected oauth_verifier parameter :) Seriously, if you're using it as a webapp, you shouldn't put that in there. On Sat, Sep 12, 2009 at 14:05, DanInDC wrote: > > I am trying to build a twitter app that uses oauth to signin. > >

[twitter-dev] Re: SSL Port

2009-09-11 Thread JDG
> On Fri, Sep 11, 2009 at 3:44 PM, JDG wrote: > >> I was just able to point to https://twitter.com/oauth/request_token(which >> would obviously imply port 443) with no problem. >> >> >> On Fri, Sep 11, 2009 at 13:40, Andrew Badera wrote: >> >&g

[twitter-dev] Re: SSL Port

2009-09-11 Thread JDG
I was just able to point to https://twitter.com/oauth/request_token (which would obviously imply port 443) with no problem. On Fri, Sep 11, 2009 at 13:40, Andrew Badera wrote: > > 9443 I think. > > ∞ Andy Badera > ∞ +1 518-641-1280 > ∞ This email is: [ ] bloggable [x] ask first [ ] private > ∞ G

[twitter-dev] Re: Errornous link - Bracket problem with bit.ly

2009-09-10 Thread JDG
Yet another reason Twitter should NOT be bit.ly encoding URLs that do not cause tweets to go > 140 chars. (or at all for that matter, leave that up to the users) On Thu, Sep 10, 2009 at 13:42, Matthew Terenzio wrote: > > Yes, you need to ask twitter to fix that. They are using our api, but >> ob

[twitter-dev] Re: Alert: "Twitpocalypse II" coming Friday, September 11th - make sure you can handle large status IDs!

2009-09-10 Thread JDG
> Now, if it goes above 64bit then I'm screwed, because neither my language > or database have built in support for that! :P > > > *From:* JDG > *Sent:* Thursday, September 10, 2009 4:21 AM > *To:* twitter-development-talk@googlegroups.com > *Subject:* [twitter-dev] Re:

[twitter-dev] Re: Alert: "Twitpocalypse II" coming Friday, September 11th - make sure you can handle large status IDs!

2009-09-09 Thread JDG
if you were on signed32 you'd have had a problem a long time ago. not quite sure why people haven't just taken to treating/storing as strings -- sure there's a bit more overhead mem/storage-wise, but you don't have to change your code every few months. On Wed, Sep 9, 2009 at 16:45, Joseph Cheek w

[twitter-dev] Re: Bad response on "Show"

2009-09-08 Thread JDG
This is a very known issue and there are threads about it in this group once every 18 or so hours. On Tue, Sep 8, 2009 at 09:38, Francis Shanahan wrote: > > I'm calling :http://twitter.com/users/show.xml > > My request works fine, it's signed correctly with a valid token etc. > > Every so often I

[twitter-dev] Re: How to find people by api

2009-09-04 Thread JDG
no method exists. On Fri, Sep 4, 2009 at 03:21, HelloPK wrote: > > Hi all, > > How we can find the people with the twitter API. We are not getting > which method using for the. > > Anybody help me. > > Thanks > Samal Pramod. > -- Internets. Serious business.

[twitter-dev] Re: Is twitter a fad or worth development efforts?

2009-09-03 Thread JDG
Ask Again Later On Thu, Sep 3, 2009 at 16:54, Andrew Badera wrote: > > Sometimes. > > > On Thu, Sep 3, 2009 at 6:45 PM, Scott Haneda wrote: > > > > Yes. > > > > On Sep 3, 2009, at 9:41 AM, ka...@sbcglobal.net wrote: > > > >> Is twitter a fad or worth development efforts? > > > > -- > > Scott * I

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

2009-09-03 Thread JDG
On Sep 3, 10:48 am, NATO24 wrote: > > > JDG, you're right, you cannot perform a XMLHttpRequest, but jQuery can > > load using the DOM script tag to get around it (using GET). See the > > second "Note:"http://docs.jquery.com/Ajax/jQuery.ajax#options > > F

[twitter-dev] Re: Find twitter account from email address?

2009-09-02 Thread JDG
Short answer: no. Ok, the long answer is "no" too. On Wed, Sep 2, 2009 at 21:18, Eric Zhang wrote: > > If I have an email address, can I query somehow to find a person's > twitter page? > -- Internets. Serious business.

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

2009-09-01 Thread JDG
The problem is with cross-site scripting. Every Javascript library I know of, due to browser security concerns, restricts AJAX calls to those coming from the local server. JQuery would then have to farm its twitter calls out to a proxy (or set thereof) on the server on which it resides. Have they f

[twitter-dev] Re: Number of Tweets in a timeframe

2009-08-31 Thread JDG
As far as I know, per-day is the finest grained time-based search you can do. On Mon, Aug 31, 2009 at 10:12, DMain wrote: > > Hi, > > does anyone know how if it's possible to receive the number of search > results on a specified timeframe? > > The following url returns all tweets from a day, but

[twitter-dev] Re: Twitter Search Since Date Timezone

2009-08-27 Thread JDG
-26 as the API search filter param, is this 26th of August in > the US? The UK? > > On Aug 26, 2:16 pm, JDG wrote: > > Z is the ISO code for UTC > > > > On Wed, Aug 26, 2009 at 05:38, moth menace > wrote: > > > > > Hello, > > > > > What time

[twitter-dev] Re: API Access from desktop and web applications using one application

2009-08-27 Thread JDG
you could set a callback_url in your app regisration, and from your desktop app, set oauth_callback_url=oob, which would cause the pin flow to start, IIRC On Thu, Aug 27, 2009 at 02:53, Nore Gabbidon wrote: > Hi Andrew, > > yes that's right - I'm aware that the same approval method applies. My >

[twitter-dev] Re: Streaming API -- CHANGE REQUIRED -- URL rationalization

2009-08-26 Thread JDG
I would hope they never expose protected tweets -- if they did, what would be ... you know, the point of it all? On Wed, Aug 26, 2009 at 17:02, Kevin Watters wrote: > > Will the streaming API ever expose tweets from protected users?--or is > it an infrastructure limitation that isn't going away

[twitter-dev] Re: Pass credentials to browser

2009-08-26 Thread JDG
touche On Wed, Aug 26, 2009 at 16:06, Stuart wrote: > > 2009/8/26 JDG : > > Yeah there is, albeit not a very nice one: You can do > http://user:p...@site/ > > That will only work with the API. The main site (and mobile site) uses > session-based authentication

[twitter-dev] Re: API: How do you find when someone started following you?

2009-08-26 Thread JDG
You can't On Wed, Aug 26, 2009 at 15:13, CWG wrote: > > Is there any way through the API or alternate means to discover when > your followers started following you? > -- Internets. Serious business.

[twitter-dev] Re: get the id's of twitter users who have authenticated with OAuth?

2009-08-26 Thread JDG
#x27;ve been collecting their personal information without your > consent. > > > On Aug 26, 9:14 am, JDG wrote: > > How could using JUST the screen name -- something that twitter explicitly > > provides to you -- possibliy get your application banned? I'm failing to > se

[twitter-dev] Re: Pass credentials to browser

2009-08-26 Thread JDG
Yeah there is, albeit not a very nice one: You can do http://user:p...@site/ On Wed, Aug 26, 2009 at 09:24, Josh Roesslein wrote: > How is that scrapping? He is just launching IE and pointing the browser at > a twitter web page for viewing. > As long as he does not parse that page for data and j

[twitter-dev] Re: Twitter Search Since Date Timezone

2009-08-26 Thread JDG
Z is the ISO code for UTC On Wed, Aug 26, 2009 at 05:38, moth menace wrote: > > Hello, > > What timezone are the search API since dates in? Doesn't seem to be > UTC 00:00 as results for a given day can go back further, eg: > searching 2009-08-26 returned one with 2009-08-25T23:02:09Z. > > Thanks

[twitter-dev] Re: get the id's of twitter users who have authenticated with OAuth?

2009-08-26 Thread JDG
ow who your users are, ask them to > register. But it should always be "opt-in". > > On Aug 25, 11:21 pm, JDG wrote: > > I fail to see how knowing the user's screen name only is "phoning home" > or a > > "sneaky thing". > >

[twitter-dev] Re: get the id's of twitter users who have authenticated with OAuth?

2009-08-25 Thread JDG
seph Cheek > jos...@cheek.com > @cheekdotcom > > mcdade wrote: > > Thanks JDG for the advice but I wrote an App, not a webapp. > > > > The program runs on the users computer and they auth, I really don't > > want to do a whole "i'm going to

[twitter-dev] Re: get the id's of twitter users who have authenticated with OAuth?

2009-08-25 Thread JDG
Explain why not? I've written apps that can do it. It's a matter of knowing how to parse the user token responses. If you're using an OSS library, you're welcome to change it to suit your needs -- it is, at its core, the beauty of OSS. On Tue, Aug 25, 2009 at 15:55, mcdade wr

[twitter-dev] Re: get the id's of twitter users who have authenticated with OAuth?

2009-08-25 Thread JDG
they do. when you get an access token, the screen name and their ID are returned to you along with the token. Use it. Store it. On Tue, Aug 25, 2009 at 15:18, mcdade wrote: > > Bumping on this since no one answered.. > > And i'm up to 90 users who authed now but I have no idea who they are > sin

[twitter-dev] Re: Unexpected behaviour in search API

2009-08-23 Thread JDG
Showed up in the link you just provided -- perhaps it takes a while to index the tweets. On Sun, Aug 23, 2009 at 15:51, raffjones wrote: > > I've developed an app to follow comedian Eddie Izzard on his 1000-mile > run across the UK - http://eddieizrunning.com/. > > Its using my own (in developmen

[twitter-dev] Re: how can I get user address using Twitter API?

2009-08-22 Thread JDG
because degenerate spammers will buy lists of email addresses to market their crappy products. On Sat, Aug 22, 2009 at 15:41, Allan Zhang wrote: > > Why email addresses equal money? I really can not see the value > > - > Thanks > Allan Zhang > Send from iPhone > > On Aug 22, 2009, at 2:25 PM, Do

  1   2   3   >