[twitter-dev] Re: oAuth company name

2009-07-06 Thread Doug Williams
Peter, Verification of companies is in the future for Twitter. There is no publicly released ship date to mention but it is safe to say that within the next year that this should be coming to the service. Thanks, Doug On Sat, Jul 4, 2009 at 4:47 PM, JDG ghil...@gmail.com wrote: i think the

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

2009-07-06 Thread muramastu
Thanks a lot! After fixing this upper case issue and I also found there is a misunderstanding about base string URL encoding, the request token can be returned now. Thanks everyone ~ On Jul 6, 1:04 pm, JDG ghil...@gmail.com wrote: from the oauth core section on parameter encoding:

[twitter-dev] automatic hashtag links breaking hexadecimal characters in web interface

2009-07-06 Thread Mario Menti
Hi there, it looks like the web interface is attempting to create hashtag links from hexadecimal characters, inserting an a ... inbetween the ampersand and the hash character, which obviously breaks the display of these characters on the web. For an example, see this post:

[twitter-dev] Bug? 200 Http Code + Empty answer with Status/Show on a specific Status ID

2009-07-06 Thread Arnaud
Hello, I am experiencing a strange problem (bug?) with the /statuses/show method on a specific status ID: n° 2490912395. The problem is occurring since 2009-07-06 03:16:11 UTC. Could you please try to retrieve this status_id using the /statuses/ show method? On my side, I get a 200 HTTP_CODE

[twitter-dev] statuses/friends page count?

2009-07-06 Thread Dmitriy Vyukov
Hi! It's unclear how I must determine how many pages retrieve via statuses/ friends. First guess was to fetch until I will retrieve page with 0 friends. However documentation says that there can be arbitrary number of friends per page because of the filtered out friends. So I guess I can receive

[twitter-dev] 403 on Direct Message

2009-07-06 Thread Jason Korkin
Hello, I am getting a 403 error when I attempt to send a response back to a user who sent a direct message. I am using Basic Authentication. Below is a verbose dump from my PHP curl script. Any ideas what I'm doing wrong here? Thanks, Jason Sending DM to spdyme * About to connect() to

[twitter-dev] Re: 403 on Direct Message

2009-07-06 Thread JDG
Unfortunately, I can't help you, but I do want to remind you to change your password now, as the entire twitter dev community has it at this point :) On Mon, Jul 6, 2009 at 08:02, Jason Korkin jkor...@gmail.com wrote: Hello, I am getting a 403 error when I attempt to send a response back to a

[twitter-dev] search API - why not XML output...

2009-07-06 Thread Carlos
Hi, bu looking at the search API docs I see the output format is JSON and Atom, why not X-ML? Forgive me I haven´t tried myself to request xml to see what I get, but hopefully the docs are obsoletea and XML is supported best regards, Carlos

[twitter-dev] Re: search API - why not XML output...

2009-07-06 Thread Abraham Williams
Because search was originally a separate company that Twitter acquired. And they didn't provide XML. There a plan to fix this: http://apiwiki.twitter.com/V2-Roadmap#MergingRESTandSearchAPIs On Mon, Jul 6, 2009 at 10:03, Carlos carlos.crose...@gmail.com wrote: Hi, bu looking at the search API

[twitter-dev] Re: 403 on Direct Message

2009-07-06 Thread Abraham Williams
The 2 most common things to checks is 1) is the recipient following the sender? 2) is it possible the sender has sent to many direct messages? For info on update limits check out: http://help.twitter.com/forums/10711/entries/15364 Abraham On Mon, Jul 6, 2009 at 09:02, Jason Korkin

[twitter-dev] Re: 403 on Direct Message

2009-07-06 Thread Matt Sanford
Hi there, I'll echo Jason's comment; by including the Authorization header you've exposed your password, please change it. You included the headers from your request below, but do you by chance have the body of the response available? Many times the error message in the body will

[twitter-dev] Re: automatic hashtag links breaking hexadecimal characters in web interface

2009-07-06 Thread Matt Sanford
Hi there, I let the person working on that stuff know and he said he'll get a fix out very soon. Thanks for the error report; – Matt Sanford / @mzsanford Twitter Dev On Jul 6, 2009, at 1:29 AM, Mario Menti wrote: Hi there, it looks like the web interface is attempting to create

[twitter-dev] Re: Failed to validate oauth signature and token using python/django libs

2009-07-06 Thread Matt Sanford
Hi Blaine, Failing the validate the signature when getting a request token is pretty rare. As you said the fact this all works from other libraries seems to point to a library issue. The most helpful things to see in these cases are: • The actual HTTP request and response that

[twitter-dev] Re: Stream API : Tracker and Follow together

2009-07-06 Thread Cary Knoop
Super Dough! Thanks for your presentation at SD forum last week! Cary

[twitter-dev] Re: sending direct messages from API fails randomly

2009-07-06 Thread H12山本 裕介
The issue has been submitted as #796. http://code.google.com/p/twitter-api/issues/detail?id=796 Thanks, Yusuke On 7月4日, 午前1:18, Yusuke Yamamoto yus...@mac.com wrote: Hi, Twitter4J has a following test case and it started to fail approximately 24 hours ago. 1. there are two users - twit4j

[twitter-dev] Re: statuses/friends page count?

2009-07-06 Thread Doug Williams
You should either page through statuses/friends until you get an empty response set or use statuses/show to get the number of friends expected and intelligently page to the end of the list. Thanks, Doug On Mon, Jul 6, 2009 at 1:39 AM, Dmitriy Vyukov dvyu...@gmail.com wrote: Hi! It's

[twitter-dev] Re: statuses/friends page count?

2009-07-06 Thread Duane Roelands
Do you ever get an empty response set? I was experimenting with the pagination and I found that if you request page 20 (for example) for someone who only has one page of friends, you simply get the page 1 response set. On Jul 6, 1:09 pm, Doug Williams d...@twitter.com wrote: You should either

[twitter-dev] Is there a partial blacklist?

2009-07-06 Thread tweetalkr
My web app was flagged by Google two weeks ago as an attack site though I have never found any malicious links or hacks. Shortly after, Google unflagged it but then Twitter, I am assuming because of Google or Google's data, suspended my app's account. Twitter then unsuspended my app's page but

[twitter-dev] Re: Is there a partial blacklist?

2009-07-06 Thread Doug Williams
Please email the API team for questions pertaining to development or application accounts [1]. 1. http://apiwiki.twitter.com/Support Thanks, Doug On Mon, Jul 6, 2009 at 10:40 AM, tweetalkr petewing...@gmail.com wrote: My web app was flagged by Google two weeks ago as an attack site

[twitter-dev] Re: statuses/friends page count?

2009-07-06 Thread Doug Williams
Duane,Yes, you will get an empty result set if you step off the end: doug-williamss-macbook-pro:~ igudo$ curl -u dougw:PASSWORD http://twitter.com/statuses/followers.xml?count=100page=43; | grep /user | wc -l 100 doug-williamss-macbook-pro:~ igudo$ curl -u dougw:PASSWORD

[twitter-dev] Re: Is there a partial blacklist?

2009-07-06 Thread tweetalkr
Thanks Doug On Jul 6, 2:10 pm, Doug Williams d...@twitter.com wrote: Please email the API team for questions pertaining to development or application accounts [1]. 1.http://apiwiki.twitter.com/Support Thanks, Doug On Mon, Jul 6, 2009 at 10:40 AM, tweetalkr petewing...@gmail.com wrote:

[twitter-dev] Re: Stream API : Tracker

2009-07-06 Thread John Kalucki
The documentation is incorrect. But, instead of fixing the documentation, it's reasonable to fix the code. For the time being, you'll have to query for the three permutations. -John Kalucki Services, Twitter Inc. On Jul 5, 9:30 pm, Cary Knoop carykn...@gmail.com wrote: Unlike the wiki

[twitter-dev] twitter_id en #JSON-badges

2009-07-06 Thread Bertram61
Hallo, ik ben nieuw op twitter en zal graag via mijn site, d.m.v. module, daarvan gebruik willen maken. Nu heb ik op mijn site - Bloemhof Online.nl - een module gezet, alleen wordt er in de configuratie om `n twitter_id gevraagd, hoe kom ik daaraan? Voor #JSON-badges wordt iets gevraagd voor het

[twitter-dev] Re: twitter_id en #JSON-badges

2009-07-06 Thread Matt Sanford
Hello, I think you need your twitter user id for the widget to work. You can get it from: curl http://twitter.com/users/show/Bertram61.xml In your case it is 19824024 Thanks; – Matt Sanford / @mzsanford Twitter Dev On Jul 6, 2009, at 1:49 PM, Bertram61 wrote: Hallo, ik

[twitter-dev] When requesting user updates api returns 502 error

2009-07-06 Thread Kaan ŞENGÜL
I'm working on a project that needs one person's timeline, I mean all of the updates from a specific user. But for large users API returns 502 error. Any suggestions?

[twitter-dev] Re: Using MagpieRSS Authentication with the Twitter API

2009-07-06 Thread Ben Metcalfe
Your best best, IMHO, is to follow the sample code on this wiki to request the API payload via CURL and then dump the response into the MagpieRSS parser. It's just easier that way, I find - as authentication via CURL is known to work out of the box. This will also make your code more future

[twitter-dev] Re: Stream API : Tracker

2009-07-06 Thread Cary Knoop
Thanks John! Cary

[twitter-dev] Language

2009-07-06 Thread Thales Greco
when the language is in Portuguese? ... I could help in the translation

[twitter-dev] I found the reason why Followers Count doesn't add up with the actual followers

2009-07-06 Thread Chris Prakoso
Just for others who encountered the same problem like me, I am sharing with you my finding. My problem was that when I paged through the follower-list of a user (myself for example), I found that that the resulting followers count are less than what it is stated in the user/show result. If I count

[twitter-dev] Re: Followers Count doesn't add up with the actual followers

2009-07-06 Thread Chris Prakoso
I can confirm this now. I just pulled the remaining followers that were not in the paged follower-list, but exist in the social-graph. So far all of them are suspended account. I guess with the paged list, the API only brings back the ones that are active. Chris On Fri, Jul 3, 2009 at 7:37 PM,

[twitter-dev] Re: search API - why not XML output...

2009-07-06 Thread Ben Metcalfe
Atom is XML On Jul 6, 8:03 am, Carlos carlos.crose...@gmail.com wrote: Hi, bu looking at the search API docs I see the output format is JSON and Atom, why not X-ML?  Forgive me I haven´t tried myself to request xml to see what I get, but hopefully the docs are obsoletea and XML is

[twitter-dev] Re: When requesting user updates api returns 502 error

2009-07-06 Thread Doug Williams
Kaan,Please provide more details about what you are doing and how you are trying to obtain the data. Without any of these details, it's hard to deduce why you are getting a 502 Timeout. Thanks, Doug 2009/7/6 Kaan ŞENGÜL gka...@gmail.com I'm working on a project that needs one person's

[twitter-dev] Multiple Domains using Twitter API

2009-07-06 Thread Scott Conlon
I am looking to develop a Twitter APP that allows users on our website to connect their profile on our websites to their Twitter account. The issue we are facing, however; is that we have everything running on separate domains. Each domain uses the same PHP files and MySQL database but will we

[twitter-dev] Re: search API - why not XML output...

2009-07-06 Thread Abraham Williams
As is RSS but but RSS, XML, json and Atom are the four formats that Twitter provides on various methods. Abraham On Mon, Jul 6, 2009 at 16:35, Ben Metcalfe ben.metca...@gmail.com wrote: Atom is XML On Jul 6, 8:03 am, Carlos carlos.crose...@gmail.com wrote: Hi, bu looking at the search API

[twitter-dev] Re: search API - why not XML output...

2009-07-06 Thread JDG
I think he means the XML schema that's returned if you use the .xml suffix for many API calls. On Mon, Jul 6, 2009 at 15:35, Ben Metcalfe ben.metca...@gmail.com wrote: Atom is XML On Jul 6, 8:03 am, Carlos carlos.crose...@gmail.com wrote: Hi, bu looking at the search API docs I see the

[twitter-dev] numerical ID

2009-07-06 Thread anthony
How can I use the following, if I do not know the numerical ID? http://twitter.com/statuses/show/123.xml If there is no way, how can I find the numerical ID programmatically?

[twitter-dev] Re: numerical ID

2009-07-06 Thread Peter Denton
you can use the users/show method http://apiwiki.twitter.com/Twitter-REST-API-Method:-users%C2%A0show and fetch the id On Mon, Jul 6, 2009 at 3:55 PM, anthony mrsmi...@gmail.com wrote: How can I use the following, if I do not know the numerical ID? http://twitter.com/statuses/show/123.xml

[twitter-dev] Does Rate Limiting Apply to Users or Clients?

2009-07-06 Thread devstudent
If a person uses 2 clients. Can each client make 150 requests / hr, or does the 150 limit apply to both clients?

[twitter-dev] Are status IDs sequential?

2009-07-06 Thread Duane Roelands
Is a tweet with a higher status ID always newer than a tweet with a lower status ID? I'd like to be able to mark new messages by storing the ID of the last message the user read.

[twitter-dev] Re: Does Rate Limiting Apply to Users or Clients?

2009-07-06 Thread Abraham Williams
Each account has 150 requests / hr. If that that account is being used from several clients all of the hits will count against the 150. Abraham On Mon, Jul 6, 2009 at 19:54, devstudent andrey...@gmail.com wrote: If a person uses 2 clients. Can each client make 150 requests / hr, or does the

[twitter-dev] Re: Are status IDs sequential?

2009-07-06 Thread Abraham Williams
Yes. Higher IDs are newer tweets. Abraham On Mon, Jul 6, 2009 at 19:43, Duane Roelands duane.roela...@gmail.comwrote: Is a tweet with a higher status ID always newer than a tweet with a lower status ID? I'd like to be able to mark new messages by storing the ID of the last message the

[twitter-dev] Re: Are status IDs sequential?

2009-07-06 Thread Doug Williams
Yes they are sequential, meaning that you can and should use the last tweet a user has read as the since_id for subsequent calls. Thanks, Doug On Mon, Jul 6, 2009 at 5:43 PM, Duane Roelands duane.roela...@gmail.comwrote: Is a tweet with a higher status ID always newer than a tweet with a

[twitter-dev] Re: Does Rate Limiting Apply to Users or Clients?

2009-07-06 Thread Xavier Mathews
It applys to both same rules for both! On 07/06/2009, devstudent andrey...@gmail.com wrote: If a person uses 2 clients. Can each client make 150 requests / hr, or does the 150 limit apply to both clients? -- Sent From Sony Slim-Line PSP Xavier A. Mathews Web-Developer

[twitter-dev] Re: Are status IDs sequential?

2009-07-06 Thread Xavier Mathews
Right but remember that you may not see there last tweet as an @reply those do count! On 07/06/2009, Doug Williams d...@twitter.com wrote: Yes they are sequential, meaning that you can and should use the last tweet a user has read as the since_id for subsequent calls. Thanks, Doug On

[twitter-dev] app ideas / clearinghouse?

2009-07-06 Thread JDG
All, As I've been tinkering with the twitter API and immersing myself in the technical side of the community, I find myself wanting very much to put together a twitter app ... but I'm short on ideas that haven't been taken. Twitter staff: is there any sort of clearinghouse for ideas that you'd