[twitter-dev] Re: Looking for Java class/package for Firehose

2010-10-02 Thread D. Smith
If I was looking for the least efficient way to parse streaming API, I would go with this solution, but since I am looking for more efficient, I decided to use a language that supports multithreading and Java is one of those languages. On Oct 1, 6:52 pm, Justin justin.carl...@gmail.com wrote:

[twitter-dev] updating a status receiving 401 unauthorized

2010-10-02 Thread eMailaya
hi i deleted my app. re-created it (again as read-write) and gave myself an authorization to use it. now i can receive my statuses and my followees statuses as many times as i want, i can even get my profile image. all is working fine! now i want to update a new status. made sure my info is

Re: [twitter-dev] Ultimately send my twitter followers direct messages from my application

2010-10-02 Thread Thomas Mango
I think what you described is exactly right. You're looking for an app that users can authorize with using OAuth. Once they're redirected back to your site (part of the OAuth process), you can create a user account for them locally and ask them to follow your Twitter account. Because they've

Re: [twitter-dev] updating a status receiving 401 unauthorized

2010-10-02 Thread Tom van der Woerdt
The header looks fine, so I guess it's a signature error. What is your Base String used to make the signature? Tom On 10/2/10 4:20 PM, eMailaya wrote: hi i deleted my app. re-created it (again as read-write) and gave myself an authorization to use it. now i can receive my statuses and my

[twitter-dev] Twitter4J 2.1.5 is out - supports production User Stream endpoint

2010-10-02 Thread Yusuke Yamamoto
Hi all, Twitter4J is an unofficial, open-sourced, mavenized and Google App Engine/Android ready Java library for the Twitter API released under the BSD license. I'm glad to announce the immediate availability of Twitter4J version 2.1.5. - Download: http://twitter4j.org/en/index.html#download

[twitter-dev] Re: updating a status receiving 401 unauthorized

2010-10-02 Thread eMailaya
thank you for your reply the base string is: POSThttp%3A%2F%2Fapi.twitter.com%2F1%2Fstatuses %2Fupdate.xmloauth_consumer_key%3Dcons key%26oauth_nonce %3D266F69C67017B331830A191EB54AB4C5%26oauth_signature_method%3DHMAC- SHA1%26oauth_timestamp%3D1286032490%26oauth_token%3Doauth token

[twitter-dev] list creation failing in API #newtwitter

2010-10-02 Thread Damon Clinkscales
list creation method is giving me: Something is technically wrong. http://api.twitter.com/1/user/lists.xml anybody else? thanks, /damon -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http://twitter.com/twitterapi Issues/Enhancements

[twitter-dev] Re: list creation failing in API #newtwitter

2010-10-02 Thread Damon Clinkscales
Please disregard. The #newtwitter issue was the 20 limit (perhaps the error should mention that?). The API, I'm not sure but it seems to be working now. thanks, /damon On Sat, Oct 2, 2010 at 8:52 AM, Damon Clinkscales sca...@pobox.com wrote: list creation method is giving me: Something is

Re: [twitter-dev] Ultimately send my twitter followers direct messages from my application

2010-10-02 Thread Dean Collins
Thomas are there restrictions on what/how many direct messages can be sent? I haven't been paying attention with twitter for a while but I thought twitter banned automatic direct messages. Thanks in advance, Dean I think what you described is exactly right. You're looking for an app that

[twitter-dev] add list members

2010-10-02 Thread Damon Clinkscales
I've tried both create_all.xml and members.xml to add multiple or just one member to a list. The list is owned by me and exists. http://dev.twitter.com/doc/post/:user/:list_id/create_all or http://dev.twitter.com/doc/post/:user/:list_id/members When the call goes through, the response is a

[twitter-dev] Re: Comparing Friendship

2010-10-02 Thread Ken D.
Interesting! - thanks for sharing. As they say, one man's terrorist is another man's freedom fighter. I've just been followed by someone selling business cards. They are following 51,000 and are followed by 54,000. Well, I doubt they are reading many of those tweets, they are too busy selling

Re: [twitter-dev] Ultimately send my twitter followers direct messages from my application

2010-10-02 Thread Thomas Mango
Yes, there's a limit of 250 direct messages per day according to: http://support.twitter.com/forums/10711/entries/15364 I'm not sure if there are any policies against automatically direct messaging someone when they follow you, but a 250/day would certainly prevent that at some point. I don't

Re: [twitter-dev] add list members

2010-10-02 Thread Thomas Mango
Are you sure you're requesting the correct format? I was able to POST to /:user/:list_id/members.xml with an id of a user and it correctly added the user to my list and responded with XML: POST: /14338478/23124429/members.xml?id=14477861 Response: http://gist.github.com/607880 On Sat, Oct 2,

[twitter-dev] Re: add list members

2010-10-02 Thread Ken D.
Hey Damon, The URL you cite is that of the documentation page. The correct URL (for create_all) is: http://api.twitter.com/1/:user/:list/create_all.xml with parameter user_id=:ids or screen_name=:screen_names The example is:

[twitter-dev] I created one application which was read-only, then i updated it to read-write now i am not able to post tweet..

2010-10-02 Thread Markanday Singh
When posting tweet its says Read-only application cannot POST I re-generated the token and application and authorized from fresh but still no luck.. please help!! -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http://twitter.com/twitterapi

Re: [twitter-dev] I created one application which was read-only, then i updated it to read-write now i am not able to post tweet..

2010-10-02 Thread Tom van der Woerdt
Credentials that are for read-only apps will not change to read/write credentials, because of security reasons. Either re-create your application, or generate new keys. Tom On 10/2/10 9:54 PM, Markanday Singh wrote: When posting tweet its says Read-only application cannot POST I

[twitter-dev] Re: Search Twitter replies

2010-10-02 Thread tsmango
When #newtwitter was launched, this was added. The API method isn't documented yet so they're saying it could change, but the the method is: GET /1/related_results/show/:id - also worth noting the authenticated user must have access to #newtwitter. Checkin here for more details: