Re: [twitter-dev] Question on Lists

2011-01-07 Thread Abraham Williams
If you are trying to pull in the statuses from a list then you would do: $xml = $connection-get('twitter/lists/team/statuses'); Were twitter is the account who created the list and team is the ID or slug of the list. Abraham - Abraham Williams | Hacker Advocate | abrah.am @abraham

Re: [twitter-dev] Problem with twitter update status message

2011-01-07 Thread Abraham Williams
Here is a simple PHP script that will post updates to a single account using OAuth: https://gist.github.com/592098 Abraham - Abraham Williams | Hacker Advocate | abrah.am @abraham https://twitter.com/abraham | github.com/abraham | blog.abrah.am This email is: [ ] shareable [x] ask

[twitter-dev] Unauthorized 401

2011-01-07 Thread Erik Bloem
Hi to all, when I use a temporary oauth_verifier in a oauth/access_token call, it works ok. Nevertheless, when I use a fixed PIN code obtained, it fails with an Unauthorized exception. What could this mean? PIN is wrong? Do I need to use another call, or use another parameter for the PIN and

Re: [twitter-dev] Unauthorized 401

2011-01-07 Thread deepa nagaraj
no you cannot do like that... for each it will generate oauth_verifier. On Fri, Jan 7, 2011 at 5:32 PM, Erik Bloem ejbl...@gmail.com wrote: Hi to all, when I use a temporary oauth_verifier in a oauth/access_token call, it works ok. Nevertheless, when I use a fixed PIN code obtained, it

Re: [twitter-dev] Unauthorized 401

2011-01-07 Thread deepa nagaraj
no you cannot do like that... for each request it will generate new oauth_verifier. On Fri, Jan 7, 2011 at 5:32 PM, Erik Bloem ejbl...@gmail.com wrote: Hi to all, when I use a temporary oauth_verifier in a oauth/access_token call, it works ok. Nevertheless, when I use a fixed PIN code

Re: [twitter-dev] API fails when tweeting with single asterisk

2011-01-07 Thread Adam Green
Matt: Is it a related issue that a leading or trailing asterisk is invisible to the search API? None of these searches return any results, even though they do appear in a timeline API call or the streaming API: **test test** ** *test test* Yet the search API can find: test**test On Tue, Jan

[twitter-dev] How to retrieve private user tweets

2011-01-07 Thread siva
Hi, We are unable to retrieve private users tweets through twitter status api.If i authenticated as a twitter user, can we see any private users tweets?Otherwise, how can we exclude private users when we are pulling tweets? Any ideas... Regards, Siva -- Twitter developer documentation and

[twitter-dev] DM rate limit confusion

2011-01-07 Thread Trevor Dean
I'm a little confused as to the rate limits for DM's. Until recently I thought I was clear but I came across a site that had me asking questions again. To the best of my knowledge a user is restricted to 250 DM's/day (non whitelisted). Is there any further restrictions to that such as only

[twitter-dev] Re: DM rate limit confusion

2011-01-07 Thread Trevor Dean
After some more digging I realized that this site is no longer in service and I believe those limits are quite dated. I should have done a bit more research before posting the question, sorry. Thanks, Trevor Dean On Fri, Jan 7, 2011 at 7:28 AM, Trevor Dean trevord...@gmail.com wrote: I'm a

[twitter-dev] Re: Unauthorized 401

2011-01-07 Thread Erik Bloem
thanks for your reply Deepa, so what do I have to do when I want to use a fixed PIN? The problem is that if I use oauth_verifier with a temporary token, it will ask me to connect to twitter and have to confirm that the application is allowed to connect to my account. That is not fiable in a

[twitter-dev] how to generate formatted json response?

2011-01-07 Thread George Cao
Hi,all i am wondering what lib that twitter uses to generate the formatted json response data if there has one. And what you guys using at work? Best regards. George Cao -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter:

[twitter-dev] Reply to a tweet

2011-01-07 Thread rahul choubey
I heard the new twitter uses API calls as any other third party app. I wanted to know, then how its able to show replies to a particular tweet. It's been always possible to check to which a particular tweet has been replied to, but how to check whether the tweet has been replied. -- Twitter

[twitter-dev] New app 401ing others work

2011-01-07 Thread Anthony Main
I have 2 developer accounts and when developing an iphone app which implements MGTwitter the first works fine. I have created a new one specifically for my client with the same settings (Client + Read/Write) but when the user tries to log in I just get a 401 error What am I missing with this 2nd

[twitter-dev] t.co reverse

2011-01-07 Thread Amaury
Hi guys ! Thanks to new Mac OS Twitter client a lot of URL in tweets are now convert to t.co witch is include in API response for user/ timeline ... Is there any way to reverse t.co simply like we can do with bit.ly API ? Thanks @Amaury -- Twitter developer documentation and resources:

Re: [twitter-dev] t.co reverse

2011-01-07 Thread Taylor Singletary
Hi Amaury, There currently isn't a distinct API available to de-reference t.co URLs (or directly produce them). However, most REST API timeline and status-bearing methods support the include_entities=true parameter which will include an additional set of fields, including unrolled t.co URLs. You

Re: [twitter-dev] API fails when tweeting with single asterisk

2011-01-07 Thread Matt Harris
Hey Adam, There are many reasons why Tweets may not show in Search but exist elsewhere. We have a support article which goes into this in more detail: http://support.twitter.com/articles/66018 To answer your question though it is likely the problem you are hitting is that * is ignored when

Re: [twitter-dev] Issue with return url in callback url in Twitter API

2011-01-07 Thread Matt Harris
Hi Rocky, Your callback domain looks to be missing the slash separating the domain from the querystring. Try instead the format (notice the slash before the ?): http://MyDomain.com/?ReturnUrl=/test.aspx Best @themattharris Developer Advocate, Twitter http://twitter.com/themattharris On

Re: [twitter-dev] Transferring a suspended account to the proper owner

2011-01-07 Thread Matt Harris
Hi Adam, The following policy documents explain a little bit more about how we approach this and what steps are available for you to take: Trademark: http://support.twitter.com/entries/18367-trademark-policy Impersonation: http://support.twitter.com/entries/18366-impersonation-policy Inactive

Re: [twitter-dev] capture the event click on the Tweet Button

2011-01-07 Thread Matt Harris
Hi, The Tweet Button doesn't provide any action hooks or callbacks. It is intended that the button initiate the Tweet flow. What different action did you have in mind? Best, @themattharris Developer Advocate, Twitter http://twitter.com/themattharris On Fri, Jan 7, 2011 at 3:48 AM, nebur

Re: [twitter-dev] Twitter Button error

2011-01-07 Thread Matt Harris
Hi, Thanks for letting us know about this. Could you file a ticket on our issues tracker so we can track any progress. The issues lists can be found at this URL: http://code.google.com/p/twitter-api/issues/list Thanks, @themattharris Developer Advocate, Twitter

[twitter-dev] Twitter search / streaming API limitation query

2011-01-07 Thread Umashankar Das
Hi, We are working on a product which will do searches on twitter from a certain server system. We are yet to take a decision whether the searches will be anonymous(Non-authenticated) or authenticated. The decision is subject to limitations on search results using twitter search / streaming

[twitter-dev] statuses.update with OAuth failing with spaces

2011-01-07 Thread Andy
I am using OAuth to authenticate and then sending in a status update - which works beautifully if there are no spaces in the status string. As soon as I add one in, I run into a 401 - invalid signature error. Any advice? Posting to: http://api.twitter.com/1/statuses/update.json Here are the

Re: [twitter-dev] statuses.update with OAuth failing with spaces

2011-01-07 Thread Taylor Singletary
For best results, normalize your space separation characters to %20 instead of +. Your POST body should contain something like tweet%20from%20the%20api and your OAuth signature basestring would encode this portion as tweet%2520from%2520the%2520api. Some libraries get a little confused with the

[twitter-dev] Re: statuses.update with OAuth failing with spaces

2011-01-07 Thread Andy
Ah - that's probably it. I did not think about the signature getting out of whack with the form. Thanks. Andy On Jan 7, 12:41 pm, Taylor Singletary taylorsinglet...@twitter.com wrote: For best results, normalize your space separation characters to %20 instead of +. Your POST body should

[twitter-dev] Names already taken

2011-01-07 Thread Jim
When you try to give your app a name at dev.twitter.com and get the this name is already taken message does this mean that there's already an app with that name? Or a Twitter user with that name? And does the app name have to be unique across the sets of both usernames and app names? Finally, is

[twitter-dev] Re: statuses.update with OAuth failing with spaces

2011-01-07 Thread Andy
And that fixed it - the encoding that was happening when I built the signature basestring was off from what was getting sent through the browser... On Jan 7, 1:43 pm, Andy abowl...@gmail.com wrote: Ah - that's probably it.  I did not think about the signature getting out of whack with the form.

Re: [twitter-dev] Re: statuses.update with OAuth failing with spaces

2011-01-07 Thread Matt Harris
Hey Andy, Glad to hear that worked out for you. Thanks for letting us know! Best, @themattharris Developer Advocate, Twitter http://twitter.com/themattharris On Fri, Jan 7, 2011 at 11:13 AM, Andy abowl...@gmail.com wrote: And that fixed it - the encoding that was happening when I built the

[twitter-dev] Can't get Oauth working

2011-01-07 Thread kevin dillon
I'm trying to develop a twitter program but no matter what I do, I can't seem to authorize. I've followed several tutorials to the letter, and can't authorize using their methods either. Most of the time I get Woah there! This page is no longer valid. It looks like someone already used the token

[twitter-dev] 502 Bad Gateway when trying to retrieve /1/statuses/mentions.json

2011-01-07 Thread Miguel de Icaza
Hello folks, My twitter client (TweetStation for the iPhone) broke during the holidays as twitter now sends me back a 502 Bad Gateway error when I post the following: GET /1/statuses/mentions.json?count=200 HTTP/1.1 authorization: [My Oauth goes here] Host: api.twitter.com I am doing

Re: [twitter-dev] 502 Bad Gateway when trying to retrieve /1/statuses/mentions.json

2011-01-07 Thread Taylor Singletary
This error usually occurs when it takes longer than a certain amount of allotted time to serve the request. While I'd prefer it if we could serve 200 tweets at a time on a mentions timeline consistently without throwing a 502 (the time will indeed come), you are likely to get better, more

Re: [twitter-dev] 502 Bad Gateway when trying to retrieve /1/statuses/mentions.json

2011-01-07 Thread Miguel de Icaza
That explains it. I stopped using my phone during the holiday break, and after that, nothing worked. I typically send the mentions.json with the count, since_id and max_id parameters, but over the holidays that accumulated and started returning errors. I heard about this problem first from

[twitter-dev] Feature Request: Share Box from Tweet button optimized for mobile device

2011-01-07 Thread KevinB
Thanks for the official Tweet Button - it's nice to have something familiar and consistent for our users. Our current implementation is to have a Tweet button on a mobile website. Functionally it works great, but the Share Box (and login, if necessary) don't work very well on a mobile device

[twitter-dev] Re: Names already taken

2011-01-07 Thread Brian Sutorius
This error message means that the application name has indeed already been registered. The Twitter username and application name spaces are separate. We don't have a public directory of all registered applications, but if you own the registered trademark for the application you're trying to

[twitter-dev] Update

2011-01-07 Thread Sheikh145
I am writing to you to inform you about the site http://freetwitterdesigner.com/, on this web application i was able to make my own twitter background which i found extremely usefull and very recomended because it was also free! Whilst i was making my background i was very disapointed to find out

[twitter-dev] Re: ~25% loss rate Streaming API vs. Search API

2011-01-07 Thread Bess
This is hard to believe. Streaming API is an approved API that should not have any limit. It should give you everything without any limit. On the other hand Search API has rate-limitation. Did you use any filter? On Jan 6, 9:42 pm, Brian Maso br...@blumenfeld-maso.com wrote: Hi All, Using the

[twitter-dev] Re: Update

2011-01-07 Thread Robbie Coleman
@Sheikh145: seriously...? -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http://twitter.com/twitterapi Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list Change your membership to this group: