Re: [twitter-dev] user data not getting in previous format.

2010-05-18 Thread Rushikesh Bhanage
Hi Taylor, Thank you for looking at my problem. I am using Mr David Billingham's PHP class file in application. http://twitter.slawcup.com/twitter.class.phps;. Yes request URL include parameter as username to fetch data from methods like userstatus($unm) (gives particular user's data) and

Re: [twitter-dev] Basic authentication

2010-05-18 Thread Dave Sherohman
On Mon, May 17, 2010 at 11:22:56AM -0700, Jef Poskanzer wrote: Have you considered keeping basic auth enabled, but only for https? This would be secure against packet sniffing and would probably use less resources than OAuth. The issue with Basic Auth isn't packet sniffing. The issue with

[twitter-dev] Re: Basic authentication

2010-05-18 Thread Rich
That argument is fine, except for one glaring issue... xAuth. I've seen plenty of iPhone clients for instance using xAuth but there is no good reason for them to be using xAuth as it's remarkably simple to use the oAuth workflow using UIWebView. I was under the belief that xAuth was designed

[twitter-dev] Help in twitteroauth By Abraham Williams

2010-05-18 Thread Feras Allaou
Hi Folks, How are you? could you please help me in this issue ?? i'm using twitteroauth php library v 0.2.0-beta3, I want to know how can I display a message regarding to the user status . I mean, if the user is logged in I print Welcome , else print Not Logged in ! How can I check so ? Please

[twitter-dev] Oauth authentication - reg

2010-05-18 Thread Sigma
Hi, I'm a newbie. i want to know how to get username and password from folks accessing my application and tweet on behalf of them? Is this the basic authentication twitter is about to close by june? And is there any way to get this work done? i don't know where to start. kindly reply with

[twitter-dev] How do we deal with application's Consumer secret in real life

2010-05-18 Thread yvolk
I'm a member of the AndTweet project creating Open Source Twitter client for Google Android (http://code.google.com/p/andtweet/), and now I'm starting to implement OAuth for the AndTweet mobile application. I've already registered AndTweet and got, among others, the Consumer key and Consumer

[twitter-dev] Twitter Crossdomain.xml issue

2010-05-18 Thread AndyCatch
Hello there, My name is Andy, and I'm a Flash Developer. I have been using the Tweetr/SwfJunkie library, and recently when I updated/uploaded my site recently, I got: Ignoring 'secure' attribute in policy file from http://twitter.com/crossdomain.xml. The 'secure' attribute is only permitted in

RE: [twitter-dev] How do we deal with application's Consumer secret in real life

2010-05-18 Thread Dean Collins
Is there any reason why each developer who takes the source code cant apply for their own keys? We did this for MyPostButler in the old version, there was a space for each user to enter in their own consumer key/consumer secret right in the main panel. Cheers, Dean -Original

Re: [twitter-dev] Oauth authentication - reg

2010-05-18 Thread Clint Shryock
Yes, that's basic auth and is going to be turned off. Here's how to get started: http://dev.twitter.com/pages/auth +Clint On Tue, May 18, 2010 at 7:58 AM, Sigma suresh.aa...@gmail.com wrote: Hi, I'm a newbie. i want to know how to get username and password from folks accessing my

Re: [twitter-dev] Oauth authentication - reg

2010-05-18 Thread Taylor Singletary
Hi, Basic authentication, which is the method of sending a username and password on each API call through HTTP Basic Auth, is going away in June. The best path to implementing secure authentication that doesn't put users at risk is OAuth ( http://dev.twitter.com/pages/auth_overview and

Re: [twitter-dev] Invalid application, intermittently

2010-05-18 Thread Taylor Singletary
This sounds strange. Can you share the return XML you get when it says invalid application? Taylor Singletary Developer Advocate, Twitter http://twitter.com/episod On Mon, May 17, 2010 at 3:56 PM, Ellsass cpa...@gmail.com wrote: When attempting to retrieve a timeline (or mentions, etc) I am

Re: [twitter-dev] Re: Intermittent 401 Errors

2010-05-18 Thread Taylor Singletary
Jonathon, When you get that error in the access token step, how much time has passed since when the request token was issued before attempting to be exchanged for an access token? Taylor Singletary Developer Advocate, Twitter http://twitter.com/episod On Mon, May 17, 2010 at 6:00 PM, Jonathon

Re: [twitter-dev] update_profile_image oAuth problem

2010-05-18 Thread Taylor Singletary
I'm not as familiar with the proper line breaks in this area of the HTTP request as I should be, but I'm going to go out on a limb and say that it's likely you're doing everything right when you get the 500 Internal Sever Error. Image uploading right now is failing pretty frequently, especially

[twitter-dev] twitter stream

2010-05-18 Thread James Jones
I just curious on what peoples thought are on the new twitter stream? Also would like to know if ajax is good at handling the stream or should I be using some other technology when using the stream API?

[twitter-dev] Is there a twitter windows desktop client support oauth ?

2010-05-18 Thread Kevin Li
i can not find any client support oauth on windows XP……

[twitter-dev] Re: Basic authentication

2010-05-18 Thread Jef Poskanzer
For my command-line twitter applications there is no third party, just the end-user and twitter. Basic Auth + https would be just fine for that.

[twitter-dev] lookupusers

2010-05-18 Thread Alain Gaeremynck
I am using search to gather a series of twits. I am then looking up the users that wrote those tweets. Now sometimes for some reason i get an error message no user found on twitter : userhandle The problem with this is that i have to parse the error message figure out which user is missing.

Re: [twitter-dev] lookupusers

2010-05-18 Thread Taylor Singletary
Hi Alain, The user ids in search results from search.twitter.com do not correspond to the user ids in rest of Twitter and the Twitter API. We're working on bridging this gap long-term. The work around is to do a user lookup based off of the screen name instead of the member id. Taylor Singletary

[twitter-dev] Re: Intermittent 401 Errors

2010-05-18 Thread Jonathon Hill
I don't have the timestamp of a request that I can get an exact measurement from, but it is 30 seconds. Jonathon On May 18, 9:57 am, Taylor Singletary taylorsinglet...@twitter.com wrote: Jonathon, When you get that error in the access token step, how much time has passed since when the

Re: [twitter-dev] Re: Basic authentication

2010-05-18 Thread TJ Luoma
On Tue, May 18, 2010 at 11:32 AM, Jef Poskanzer jef.poskan...@gmail.com wrote: For my command-line twitter applications there is no third party, just the end-user and twitter.  Basic Auth + https would be just fine for that. +1 I don't access anyone's account information except my own. This

Re: [twitter-dev] lookupusers

2010-05-18 Thread Alain Gaeremynck
That's already what i do. i do lookupusers with the screennames On 2010-05-18, at 11:57 AM, Taylor Singletary wrote: Hi Alain, The user ids in search results from search.twitter.com do not correspond to the user ids in rest of Twitter and the Twitter API. We're working on bridging this

Re: [twitter-dev] lookupusers

2010-05-18 Thread Alain Gaeremynck
I just found out why it fails... First my bad, the exception i was talking about originates from our code. Now when i fetch users i get the handle from the search and put the data returned by user lookup in a Map using the screenName as key. the problem is that there is a case mismatch for the

Re: [twitter-dev] Oauth authentication - reg

2010-05-18 Thread Suresh Kumar
Hi, Is there any api for as3 available? Suresh Kumar On Tue, May 18, 2010 at 7:10 PM, Taylor Singletary taylorsinglet...@twitter.com wrote: Hi, Basic authentication, which is the method of sending a username and password on each API call through HTTP Basic Auth, is going away in June.

[twitter-dev] Re: Creating a list documentation missing and old method doesn't work with Oauth

2010-05-18 Thread uprise78
To add to this, the old API docs that work for basic auth but not Oauth are on the page: http://apiwiki.twitter.com/Twitter-REST-API-Method:-POST-lists Is this the correct place to report bugs with the API docs?

[twitter-dev] Re: oAuth Echo Enabled Providers

2010-05-18 Thread uprise78
Does TwitPic's oauth echo work? The example on the api.twitpic.com site fails due to the header in the curl call being totally wrong (they put key=value instead of key:value). Changing that to the correct header still fails for me. Has anyone gotten this to work? If so, do you mind posting a

[twitter-dev] Re: oAuth Echo Enabled Providers

2010-05-18 Thread uprise78
I *just now* got a response from Twitpic and they updated the docs so maybe it will work nowI'll test in a few hours.

[twitter-dev] Re: API call to turn on location-based tweets?

2010-05-18 Thread Ken
I have an issue with the text itself. You can give applications permission to tell Twitter where you are when you send a Tweet implies that the geodata refers to the user's actual location. People are - rightly or wrongly - worried about this, and many do not activate geolocation. Our simple app

Re: [twitter-dev] Re: Basic authentication

2010-05-18 Thread Abraham Williams
If you are only working with your own account have a look at: http://dev.twitter.com/pages/oauth_single_token Abraham On Tue, May 18, 2010 at 11:28, TJ Luoma luo...@gmail.com wrote: On Tue, May 18, 2010 at 11:32 AM, Jef Poskanzer jef.poskan...@gmail.com wrote: For my command-line twitter

Re: [twitter-dev] Help in twitteroauth By Abraham Williams

2010-05-18 Thread Abraham Williams
Once the user comes back to your site and has a valid access token you can use PHPs sessions to check if they are authenticated. http://www.php.net/manual/en/book.session.php Abraham On Tue, May 18, 2010 at 03:35, Feras Allaou feras.all...@gmail.com wrote: Hi Folks, How are you? could you

Re: [twitter-dev] Facing problem.

2010-05-18 Thread Abraham Williams
What is the exact error? Abraham On Tue, May 18, 2010 at 00:07, Rushikesh Bhanage rishibhan...@gmail.comwrote: Hi, Yes, I had the same doubt, so I replaced a month back's TwitterAPI.php file and tried to run, but no happy moment and saw same error. Actually I was working on another

Re: [twitter-dev] Providing mobile and online service seamless integation.

2010-05-18 Thread Abraham Williams
Since you are syncing everything you might as well just use one application then you would only have to worry about syncing to your servers. You might also want to look into some sort of delegation from the mobile clients and their communication to your servers. Abraham On Mon, May 17, 2010 at

Re: [twitter-dev] Re: API call to turn on location-based tweets?

2010-05-18 Thread M. Edward (Ed) Borasky
On Tuesday, May 18, 2010 12:17:34 pm Ken wrote: I have an issue with the text itself. You can give applications permission to tell Twitter where you are when you send a Tweet implies that the geodata refers to the user's actual location. People are - rightly or wrongly - worried about this,

[twitter-dev] Re: API call to turn on location-based tweets?

2010-05-18 Thread Ken
I take back what I said about the availability of device-based tweeting. I was thinking about plain old dumb-phone SMS tweeting. And of course browsers can now do geolocation. So, yes, bring on the translations, but for those doing manual entry of arbitrary coordinates let it be clear that they

[twitter-dev] Re: Mobile OAuth Summary

2010-05-18 Thread Caleb
Hi, In building out our Android and iPhone app we are in need of a seamless way for users to auth with Twitter and make it possible for us to Auto-Share for them if they choose. With the http auth going away we are looking for guidance on best practices here. We would love to see something like

[twitter-dev] Re: Basic authentication

2010-05-18 Thread Eric
We are using the Streaming API and will only be using our own credentials. Our experience with OAuth in other services has not been positive, so like TJ says huge hassle for no gain. +1 Thanks. -Eric On May 18, 9:28 am, TJ Luoma luo...@gmail.com wrote: On Tue, May 18, 2010 at 11:32 AM, Jef

[twitter-dev] Re: oAuth Echo Enabled Providers

2010-05-18 Thread Rich
I don't use curl but send it with multipart form data and it's been working with TwitPic since sunday. And it works great to be honest once you've got the oAuth Echo logic in place. I hope the other providers get their acts in order and give us enough time to get through the Apple Approval

[twitter-dev] Re: oAuth Echo Enabled Providers

2010-05-18 Thread uprise78
On May 18, 2:08 pm, Rich rhyl...@gmail.com wrote: I don't use curl but send it with multipart form data and it's been working with TwitPic since sunday.  And it works great to be honest once you've got the oAuth Echo logic in place.  I hope the other providers get their acts in order and give

[twitter-dev] Release of PHP Twitter (with OAuth)

2010-05-18 Thread Tijs Verkoyen
Hi all, I am Tijs, you may know me by the (wrapper-)class I wrote before (http://classes.verkoyen.eu/twitter). I now wrote a new version of the class which uses OAuth for authenticating. If you're interested you can grab a copy at: http://classes.verkoyen.eu/twitter_oauth. Have fun!

[twitter-dev] Re: Release of PHP Twitter (with OAuth)

2010-05-18 Thread Alex Romijn
Hi Tijs, Great! Will try this out. I read on your site that accountUpdateProfileImage isn't yet implemented. When do you expect this function will be available? Alex On 18 mei, 23:34, Tijs Verkoyen t...@verkoyen.eu wrote: Hi all, I am Tijs, you may know me by the (wrapper-)class I wrote

[twitter-dev] Re: Invalid application, intermittently

2010-05-18 Thread Ellsass
Today (5/18) I haven't gotten the error at all. It was happening occasionally on 5/16 and very often on 5/17 during the daytime and evening, eastern US. My request, in PHP (I've modified EpiTwitter slightly to deal in XML rather than JSON): $twitterObj = new EpiTwitter($consumer_key,

[twitter-dev] Re: Searching date limitations

2010-05-18 Thread Miles Parker
Thanks Taylor! Can you say anything about wether you actually persist them anywhere? I mean it would be an enormous challenge to actually allow those to be queried interactively online. But if you do have the data somewhere an intermediate step might be to allow batch requests for large data sets

Re: [twitter-dev] Re: Searching date limitations

2010-05-18 Thread Taylor Singletary
We certainly store them :) We love tweets. Can't get enough of them and want to share them all. But keeping them available for even off-peak general data access just isn't something we're setup for today. Taylor Singletary Developer Advocate, Twitter http://twitter.com/episod On Tue, May 18,

Re: [twitter-dev] Re: Invalid application, intermittently

2010-05-18 Thread Taylor Singletary
Thanks, Ellsass. A few more questions to better help us identify the issue: - You're sure you're using the same consumer key and secret for these requests and not switching between different API keys and possibly mis-matching access tokens with the wrong consumer key? - Have you been making

[twitter-dev] Re: How to filter out utf-8 characters in java

2010-05-18 Thread giustin
Someone can help me? This is very important to me. Thank you very much. On 16 maio, 23:30, giustin tgiu...@gmail.com wrote: Hi, Dears! If one of yours could help me, I will really be happy. I have no experience with PHP. If you access the follow link, the prototype will send a request to

[twitter-dev] Re: How to use PHP Twitter Search API with the operators OR SINCE HASHTAG etc

2010-05-18 Thread giustin
Hi, people! I'm here again to question a more thing: We suppose the experiences and links explain above. If I wanna use PHP Twitter Search by Ryan Faerman (http://greenservr.com/projects/ twittersearch/TwitterSearch.phps) to search using two tags with the operator OR: URL API/brasil+OR+copa.

[twitter-dev] Re: oAuth Echo problems

2010-05-18 Thread uprise78
I'm in the same boat. My call to Twitter works fine but I get 401's from TwitPic every time.

[twitter-dev] Mismatch oauth_callback and real url where redirects to

2010-05-18 Thread Andrey Vyrvich
I've make a request like http://twitter.com/oauth/request_token?oauth_callback=chrome%3A%2F%2Fid_twitter%2Fcontent%2Ftwitter_oauth.html%3FTwitterExOAuthcallback%3Dtrueoauth_consumer_key=3H where oauth_callback=chrome://id_twitter/content/twitter_oauth.html? TwitterExOAuthcallback=true but

[twitter-dev] Re: oAuth Echo Enabled Providers

2010-05-18 Thread Rich
You don't sign the request to TwitPic at all. You make a fake signature as if you calling the verify_credentials end point and add that to the http header On May 18, 10:23 pm, uprise78 des...@gmail.com wrote: On May 18, 2:08 pm, Rich rhyl...@gmail.com wrote: I don't use curl but send it with

[twitter-dev] Re: alert() in anywhere.js

2010-05-18 Thread Mike Davis (mcdavis)
Any update on this? I'm getting it on a site for certain users/ browsers even though it's all configured correctly as well. The alerts are very intrusive for a production website when things are configured correctly. Especially with user emails rolling in complaining about getting the error.