[twitter-dev] Adding and removing from Lists does not appear to be working

2010-07-28 Thread Alex B
Adding and Deleting members from lists appears to be silently failing. This issue also appears to impact the Twitter web interface. Is it just me seeing this bug? Is there any information on the issue?

[twitter-dev] Re: Better support for Developers

2010-07-28 Thread Chi-Shun Chen
If no programmer can do this with twitter, then the problem is on twitter. But some programmers should can do this. In another hand,it should not twitter's responsibility and goal to teach all programmers all programming skills. So that why there is a page list programmers available to work

[twitter-dev] C# Issues With Special Characters

2010-07-28 Thread MiloCaruso
I have searched and searched and not found a good solution to being able to send special characters in status updates using c#. I can send status updates that contain most ASCII characters (but not all). fore example, this would work: I love twitter but this will fail: twitter = love I am

[twitter-dev] Login into Twitter (via browser) programmatically with OAuth

2010-07-28 Thread chris.khoo
I'm looking for a way to login to twitter.com on the browser programmatically with OAuth. Is this possible? I'm essentially writing an app to manage multiple Twitter accounts, and would find this functionality quite useful. Chris

[twitter-dev] not able to send tweet conataining character '*' using OAUTH

2010-07-28 Thread manjusg
Hi , i tried to send the tweet message containing the character '*'. but it responds with invalid signatture. issue is same for this character '`' also.

[twitter-dev] since_id not getting since_id :)

2010-07-28 Thread Gary
Hi, I've got a question about since_id and if it actually works. The API states - since_id: returns tweets with status ids greater than the given id. So when I get a list of 100 twitter messages, I store the maximum id in that group, which I get from the id property after stripping out

[twitter-dev] twitter public timeline

2010-07-28 Thread Alfredo Baraldi
I'm creating an application that relies on public / timeline: this application must must be select the posts that have a value preceded by $ character, eg Today I buy $AAPL to the stockexchange i like apple industries, and then i store them in a database. My question is this: is it true that

[twitter-dev] Need inputs to implement Twitter app using xAuth

2010-07-28 Thread Sambath Chandran
All, I am implementing an application to receive and the latest tweet from the twitter. After refering to twitter website, I concluded to use xAuth authentication for my development. Can anybody let me know is there any ready to use java library for xAuth? Basially I want to know to how to make

[twitter-dev] Non-web application Authorization - Granting Multiple Times

2010-07-28 Thread Gaurav Vaish
Hi, Using Twitter4J API, I have been able to successfully fetch the data and perform an status update using OAuth. Here are the results: http://twitter.com/mastergaurav/status/19730194057 (Positive Results) Problem -- Once a user grants access to the user, how can I reuse the granted access

Re: [twitter-dev] Need inputs to implement Twitter app using xAuth

2010-07-28 Thread Ernandes Jr.
Hi, Please, refer to http://dev.twitter.com/pages/oauth_libraries and you find some libraries developed by community. Otherwise, you can use Android version of TwAPIme and reuse the classes related to xAuth. Regards, Ernandes On Wed, Jul 28, 2010 at 6:29 AM, Sambath Chandran

Re: [twitter-dev] twitter public timeline

2010-07-28 Thread Taylor Singletary
Hi Alfredo, I recommend taking a look at the Twitter Streaming API at http://dev.twitter.com/pages/streaming_api for an application like this. Taylor On Wed, Jul 28, 2010 at 1:15 AM, Alfredo Baraldi alfredo.bara...@gmail.comwrote: I'm creating an application that relies on public / timeline:

Re: [twitter-dev] C# Issues With Special Characters

2010-07-28 Thread Cameron Kaiser
I have searched and searched and not found a good solution to being able to send special characters in status updates using c#. I can send status updates that contain most ASCII characters (but not all). fore example, this would work: I love twitter but this will fail: twitter =

Re: [twitter-dev] Non-web application Authorization - Granting Multiple Times

2010-07-28 Thread Taylor Singletary
Hi Gaurav, Once you've gone through all the steps of OAuth and have acquired an access token (made up of an oauth_token and oauth_token_secret), you can then persist the access token in whatever means of storage your application uses. Then, when making an API call on behalf of a Twitter user for

[twitter-dev] Invalid / used nonce

2010-07-28 Thread Mounir Regragui
Hello guys! So I have this issue with Twitter Rest API. My application was working just fine, then, sometimes, when i try to call the api, I receive this error message errorInvalid / used nonce/error The same code runs, and sometimes it works, sometimes it does not. The error can occur during

Re: [twitter-dev] Invalid / used nonce

2010-07-28 Thread Taylor Singletary
Hi Mounir, Two things to verify: one is that you are using a timestamp that is within about 5 minutes of our system clocks. We return the current time in a Date HTTP header with every request. Second, verify that you've never used the nonce you are creating for each request -- this is across all

[twitter-dev] Re: oauth/request_token issue - 401 unauthorized

2010-07-28 Thread ivan_m5
Hi Taylor, thanks for your reply. 1) No, clock is pretty much synced. I've come across this advice already and checked it in first place: my oauth_timestamp is 1280250833 and the server responds with header X- Transaction=1280250931-50619-29066 which I suppose includes server-side clock. The

[twitter-dev] Re: Invalid / used nonce

2010-07-28 Thread Mounir Regragui
Hi Taylor. First of all, thank you for the help :) I am almost sure that this is not a Data issue. As I told you, this error happens randomly (unhopefully, it happens very often, 80% of my API calls return with this error today). Also, I did not modify the code I used before, and it was just

Re: [twitter-dev] Need inputs to implement Twitter app using xAuth

2010-07-28 Thread Abraham Williams
Twitter4j supports xAuth: http://goo.gl/ZmM2 Abraham - Abraham Williams | Hacker Advocate | http://abrah.am @abraham | http://projects.abrah.am | http://blog.abrah.am This email is: [ ] shareable [x] ask first [ ] private. On Wed, Jul 28, 2010 at 02:29, Sambath Chandran

Re: [twitter-dev] Re: Invalid / used nonce

2010-07-28 Thread Taylor Singletary
I would recommend adding some kind of logging so that when you do get a failed request, you know the following: the POST body included in the failed request and the signature base string prior to signing for OAuth. There's a chance that a certain sequence of characters and UTF-8 characters might

Re: [twitter-dev] API HTTP Post statuses/update.xml

2010-07-28 Thread Eric Mortensen
But, It appears did not hit a 1000 update limit since after an hour and can start updates again. That why it appears to be an hourly limit. Not to mention when this started I did not even have a 1000 tweets total on the account. That is why it can't be the 1000 a day limit. There is should be

Re: [twitter-dev] Adding and removing from Lists does not appear to be working

2010-07-28 Thread Dana Contreras
Hi Alex, Can you tell me specifically which lists and users you're seeing this problem with? Feel free to email me off-list if you prefer. On Wed, Jul 28, 2010 at 12:54 AM, Alex B alex.boswo...@gmail.com wrote: Adding and Deleting members from lists appears to be silently failing. This issue

[twitter-dev] Re: wating for whitelist confirmation for over a week

2010-07-28 Thread Adam Wride
Any word on the whitelist requests? On Jul 12, 2:49 pm, David dtran...@gmail.com wrote: Hey hkimscll, I think you just need to be patient - you'll get an email when they approve your request. From the API Announce List: Ryan Sarver rsar...@twitter.com Jul 07 07:18AM -0700 ^ I wanted to

[twitter-dev] Re: C# Issues With Special Characters

2010-07-28 Thread MiloCaruso
I am using a built in url encoding method that was included in the oAuth library. I have seen it referenced many times and it is supposed to work to url encode. On Jul 28, 11:00 am, Cameron Kaiser spec...@floodgap.com wrote: I have searched and searched and not found a good solution to being

Re: [twitter-dev] twitter public timeline

2010-07-28 Thread Alfredo Baraldi
hi,Taylor I read the documents listed, but none of these offers explanations for the problem that I face. Maybe I'm wrong? Regards Alfredo 2010/7/28 Taylor Singletary taylorsinglet...@twitter.com Hi Alfredo, I recommend taking a look at the Twitter Streaming API at

[twitter-dev] Re: Better support for Developers

2010-07-28 Thread Sam
What I have found is that 99% of the topics on here relate to Oauth... if you have a question about a different aspect of the api it is less likely that you will get a reply. The wiki documentation is fairly good and code examples are given, but if you are trying to do something that is not

Re: [twitter-dev] Re: C# Issues With Special Characters

2010-07-28 Thread Taylor Singletary
Hi Milo, Though the process of URL encoding for OAuth is usually handled well by URL encoding libraries, there are times when they don't do the right things as far as what OAuth is expecting. Things like encoding ~ characters when they are to remain unencoded, for example. One thing you want to

Re: [twitter-dev] Re: C# Issues With Special Characters

2010-07-28 Thread Cameron Kaiser
I am using a built in url encoding method that was included in the oAuth library. I have seen it referenced many times and it is supposed to work to url encode. Can you post relevant portions of your code and the output? -- personal:

[twitter-dev] Re: not able to send tweet conataining character '*' using OAUTH

2010-07-28 Thread James Teters
You don't specify what language you're using but you should check to make sure that it's oAuth string encoding call encodes all the necessary characters. For example, when writing an oAuth library for JavaScript I used: encodeURIComponent(); However encodeURIComponent does not encode the

[twitter-dev] Announcing a limited User Streams testing period for desktop apps

2010-07-28 Thread Taylor Singletary
Hi Developers, User Streams is now in a limited testing period for desktop clients. We are working closely with developers to preview their implementations to a restricted set of testers. We are gathering feedback and usage statistics to prepare for an open beta period, tentatively scheduled for

Re: [twitter-dev] Re: wating for whitelist confirmation for over a week

2010-07-28 Thread Taylor Singletary
Hi Adam, We're processing requests again but have a considerable queue backed up. Taylor On Wed, Jul 28, 2010 at 9:21 AM, Adam Wride adamwr...@gmail.com wrote: Any word on the whitelist requests? On Jul 12, 2:49 pm, David dtran...@gmail.com wrote: Hey hkimscll, I think you just need

[twitter-dev] How to get all Verified Users @ http://twitter.com/verified

2010-07-28 Thread Sean Callahan
Is there an API call or a quick way to get a list of all users on Twitter that are verified? I am updating this list, http://tweetphoto.com/celebrities, and was looking for a quick way to update it. Thanks for your help! Sean

Re: [twitter-dev] How to get all Verified Users @ http://twitter.com/verified

2010-07-28 Thread Taylor Singletary
Hi Sean, Unfortunately there is no way to accomplish this using direct methods on the API at this time. Taylor On Wed, Jul 28, 2010 at 3:23 PM, Sean Callahan seancalla...@gmail.comwrote: Is there an API call or a quick way to get a list of all users on Twitter that are verified? I am

[twitter-dev] Basic Auth deprecation August 16th?

2010-07-28 Thread chinaski007
Any word on if this is still planned? Any further extensions? Or is the drop-dead deadline still August 16th?

Re: [twitter-dev] Basic Auth deprecation August 16th?

2010-07-28 Thread Pascal Jürgens
http://countdowntooauth.com/ On Jul 29, 2010, at 1:22 AM, chinaski007 wrote: Any word on if this is still planned? Any further extensions? Or is the drop-dead deadline still August 16th?

Re: [twitter-dev] Re: Open Source CMS Module and Consumer Secret

2010-07-28 Thread M. Edward (Ed) Borasky
Is this scheme available for all open source applications to test, or is TTYtter the only one using it at the moment? -- M. Edward (Ed) Borasky http://borasky-research.net http://twitter.com/znmeb A mathematician is a device for turning coffee into theorems. - Paul Erdos Quoting Cameron

[twitter-dev] Re: Sending 1600 DMs?

2010-07-28 Thread Bess
There is no way to lift this DM daily limit? If I build an emergency system to report accidents then official twitter for police or Red Cross won't be able to receive more than 250 DM per day. If there is a major accidents that involve more than 250 injuries assuming each DM per injury report,

[twitter-dev] Re: Better support for Developers

2010-07-28 Thread Bess
Yes I agree. What Twitter has already published is fairly good. However the areas that Twitter won't mention or cover in the documentation is the painful gray area. There are no sufficient of doc to find out how to do certain ways especially on OAuth. On Jul 28, 10:19 am, Sam

Re: [twitter-dev] Re: Sending 1600 DMs?

2010-07-28 Thread Pascal Jürgens
Just curious: the limit is on sending, not receiving. Why exactly would one want to send more than 250 tweets for one incident? Wouldn't that many messages overwhelm any helpful agency and actually have a detrimental effect? Pascal On Jul 29, 2010, at 2:06 AM, Bess wrote: There is no way

Re: [twitter-dev] Re: Sending 1600 DMs?

2010-07-28 Thread Julio Biason
If you need to send that many messages, put them on your public timeline and people that follow you will get them. On Wed, Jul 28, 2010 at 9:06 PM, Bess bess...@gmail.com wrote: There is no way to lift this DM daily limit? If I build an emergency system to report accidents then official

[twitter-dev] Searching for tweets by place_id

2010-07-28 Thread benn
Is there a way to search for tweets by place_id? Or can we only use a geo search with a very small radiues?

Re: [twitter-dev] Searching for tweets by place_id

2010-07-28 Thread Matt Harris
Hi Benn, In search you can use the parameter place:place_id to restrict results to public Tweets from a known place. You will need to know the place_id that we use first. For example, to see all Tweets from Twitter HQ (place_id = 247f43d441defc03) I would make this request: curl

Re: [twitter-dev] since_id not getting since_id :)

2010-07-28 Thread Matt Harris
Hey Gary, I think you mean the search API but i'm not sure. If you can provide an example of the request you are making to the API, the response (as search changes quickly) and the ID you then use for since_id i'll take a look and check what's happening. Best, Matt On Wed, Jul 28, 2010 at