[twitter-dev] Feedback on the sidebar of the documentation site

2010-10-29 Thread Orian Marx (@orian)
I've been meaning to post some feedback in regards to dev.twitter.com for a while. I'm wondering if anyone else is having the same experience I am. It's pretty much all in regards to the sidebar: * I find it harder to find methods I'm looking for now that everything is listed under collapsible

[twitter-dev] Is list/create_all working?

2010-10-29 Thread Orian Marx (@orian)
I'm trying to make a call to add multiple users to a list using the format http://api.twitter.com/1/owner_id/list_id/create_all.xml?user_id=user_id_1,user_id_2,user_id_3 This seems to be failing and returning an HTML page from Twitter. My calls to add the same users to the same list one at a time

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

2010-10-29 Thread Tom van der Woerdt
Your x_auth_* parameters aren't in your base string. This might cause it. Tom On Oct 29, 2010, at 6:10 AM, udta 477914...@163.com wrote: Hi, I am using libtwitcurl, and converting oAuth to xAuth, but I got Failed to validate oauth signature and token. I compare all I can printf data to

Re: [twitter-dev] Rate limit for streaming api (tracking keyword)

2010-10-29 Thread Tom van der Woerdt
There is no real limit on the stream API, because it is an open connection that stays open. As long as you don't connect/disconnect too often, you will not hit any limits. Tom On Oct 29, 2010, at 6:55 AM, Thiago Esteves thgeste...@gmail.com wrote: Hi, I am developing an application that

[twitter-dev] Json parse error / escape problem

2010-10-29 Thread Morris Li
Hi i have got an issue with my PHP version while developing the tweeter application. Our company setting at the moment is: php 5.1.2 the json_decode function is from 5.2+. So when I try to tweet a message to twitter it throws 'Illegal escape sequence 'u''. Can anyone would like to help? Below is

[twitter-dev] Facing problem with Twitter client integration on Iphone

2010-10-29 Thread Umaid
I am integration Twitter cleint link in Iphone application but having autthentication not supported and my post isn't pusblishing on twitter website. I using this link below and my id and password are correct NSURL *url = [NSURL URLWithString:@http://twitter.com/statuses/ update.xml];

[twitter-dev] Userstream oauth prompting for user/pass

2010-10-29 Thread bterm
Trying to use userstream.twitter.com over https with oauth and i keep getting prompted for a username and password, according to the documentation (http://dev.twitter.com/pages/user_streams) oauth is supported. Is there some documentation, twitter app configuration, or signup form that i've

Re: [twitter-dev] Old Tweets

2010-10-29 Thread Edward Hotchkiss
Your only other options to load older tweets are Google. Best, -- Edward H. Hotchkiss http://www.edwardhotchkiss.com/ http://www.twitter.com/edwardhotchkiss/ -- On Oct 29, 2010, at 9:20 AM, Marcos Lavorato wrote: Hello folks. I am a developer and I want to develop

Re: [twitter-dev] Feedback on the sidebar of the documentation site

2010-10-29 Thread Edward Hotchkiss
The methods are actually just queries and parameters for OAuth. You select the language of your choice. For examples check out @abraham's TwitterOAuth on GitHub. It's not really that confusing because it's just made to be a reference point, not an all day bonanza. Best, --

Re: [twitter-dev] Querying Streaming API filter with partial link phrase

2010-10-29 Thread Matt Harris
The Streaming API doesn't have support for domain link matching yet. It's something the team is looking into but we do not have a timeline for when it will be available. If there are any updates on this we'll post them to the mailing list and @twitterapi. Best @themattharris Developer Advocate,

[twitter-dev] Re: Failed to Auth on Japanese OS

2010-10-29 Thread Gary
I should add that there are no Japanese characters in the message. It's all English. In fact I did try adding Japanese characters using the Engllish OS and that worked fine. Even when I used a Japanese character password, the English OS authenticated correctly. On Oct 29, 1:01 pm, Gary

[twitter-dev] Failed to Auth on Japanese OS

2010-10-29 Thread Gary
Hi, I've had great success with the Twitter API until I tried it on a Japanese version of Windows. It fails to ...validate oauth signature and token. I have captured the output using wireshark and the outgoing message is identical to the English version of Windows. This does not happen on all

Re: [twitter-dev] Re: Failed to Auth on Japanese OS

2010-10-29 Thread Taylor Singletary
Are there any other environmental issues, such as the system clock that might be different? Are you absolutely sure that all characters are UTF-8 in both environments, regardless of language? Taylor On Fri, Oct 29, 2010 at 1:04 PM, Gary cga...@gmail.com wrote: I should add that there are no

[twitter-dev] The best method for finding new retweets

2010-10-29 Thread Tobias C. Jensen
Hi guys. I just tried showing my retweets using retweets_of_me. However, if I get someone to retweet one of my already retweeted statuses, nothing changes in the result - because it already figures as retweeted, and retweets_count always shows 'false'. So does this mean I have to look them all

[twitter-dev] TwitterOAuth fails in getRequestToken()

2010-10-29 Thread José Luis
I'm trying TwitterOAuth's examples and have come across the following problem. When Signing in the redirect.php page doesn't redirect to any page. Tracing it the script dies when doing: /* Get temporary credentials. */ $request_token = $connection-getRequestToken(OAUTH_CALLBACK); If I put an

[twitter-dev] Posting Status Update with PHP

2010-10-29 Thread sdenike
Am I missing something along the lines of how the message should be encoded when posted to Twitter? I have tried urlencode, add slashes, strip slashes etc etc and no matter what I try when I post something like It's it will end up on twitter as It\'s Please advise. Thanks -- Twitter developer

Re: [twitter-dev] Posting Status Update with PHP

2010-10-29 Thread Edward Hotchkiss
works fine for me - public function Tweet($tweet) { $parameters = array(status = $tweet); $status = $this-connection-post(statuses/update, $parameters); $this-Stats(statuses/update, $status, $this-connection- http_code, $parameters); } Best,

[twitter-dev] Re: Twitter Button does not run into iPhone Web Page

2010-10-29 Thread Daniel
Hi!! Oh yea!! I could check the link and runs OK but if you Open the same link fom twitter application for iPhone an error appears: prohibido. User has been suspended. :b Any idea?? If you Sant to checkit I could send you a DM. My Account is @danielatik Thanks!! On 28 oct, 20:19, Matt

Re: [twitter-dev] TwitterOAuth fails in getRequestToken()

2010-10-29 Thread Abraham Williams
What does printing $connection-http_code after making the call return? Abraham -- Evobots configured this transmission while traveling at 50 billion times the speed of light. On Oct 29, 2010 3:38 PM, José Luis jlgon...@ya.com wrote: I'm trying TwitterOAuth's examples and have come across the