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" wrote: > I'm trying TwitterOAuth's examples and have come across the following > pro

[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] 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);

[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 develop

[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 ech

[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 t

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 wrote: > I should add that there are no Japanese character

[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

[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 wrote: >

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,

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] 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

[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 missed?

[twitter-dev] HTML Encoding does not render Tweets

2010-10-29 Thread Deh Pall
Hello, I have a problem about 1 day ago. I'm using API and executing a basic query to view result tweets. The problem is: I put those tweets in an ArrayList and execute an FOR on JSP to render every tweet, but the page does not render totally and stop by half. I realized this is a charset issue,

[twitter-dev] Re: Is list/create_all working?

2010-10-29 Thread Orian Marx (@orian)
Thanks, that did the trick. On Oct 29, 11:23 am, Taylor Singletary wrote: > Bad documentation error (sucks that we haven't updated it yet, sorry): > > POSThttp://api.twitter.com/version/:user/:list_id/members/create_all.form... > > Taylor > > On Oct 28, 11:55 pm, "Orian Marx (@orian)" > wrote: >

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

2010-10-29 Thread Terry Smith
I don't think that's entirely true. If the keyword goes above a certain frequency then it will get rate limited (for example we have an open stream for "http" to get links and only see about 20% of the overall links). We're seeing about 50 tweets / second so I would imagine you'll be less than th

[twitter-dev] Re: Is list/create_all working?

2010-10-29 Thread Taylor Singletary
Bad documentation error (sucks that we haven't updated it yet, sorry): POST http://api.twitter.com/version/:user/:list_id/members/create_all.format?user_id=1,2,3,4,5,6 Taylor On Oct 28, 11:55 pm, "Orian Marx (@orian)" wrote: > I'm trying to make a call to add multiple users to a list using the

[twitter-dev] Old Tweets

2010-10-29 Thread Marcos Lavorato
Hello folks. I am a developer and I want to develop a application that analyze all tweets from a user using the O-Auth. I read that that using the API I can load only the last 3200 tweets. Is this right? Have another method to load all tweets from user? Really thanks. Marcos -- Twitter developer

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

2010-10-29 Thread Taylor Singletary
Two things: It looks like you're trying to use basic auth which is no longer supported. You'll want to use OAuth instead. http://dev.twitter.com/pages/basic_to_oauth The URL you're trying to POST to has been deprecated. You should use http://api.twitter.com/1/statuses/update.xml -- Our REST API U

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

2010-10-29 Thread engine.start
Hi Tom, Thanks for your reply, I have fix the problem you mentioned, but it still return "Failed to validate oauth signature and token"... sigBase is --- POST&https%3A%2F%2Fapi.twitter.com%2Foauth%2Faccess_token&oauth_consumer_key%3D###%26oauth_nonc

[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"]; N

[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

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 wrote: > Hi, > > I am developing an application that needs to track a k

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 d