Re: [twitter-dev] posting status

2011-02-11 Thread Kritika Singh
Have used both tweepy and twitter. http://dev.twitter.com/doc/post/statuses/update - Is this the documentation you're talking about? On Fri, Feb 11, 2011 at 7:06 AM, Sujit Shah sujit...@gmail.com wrote: Which external libraries do you use? Have a look at the update status documentation. On

Re: [twitter-dev] Re: Update on Whitelisting

2011-02-11 Thread Trevor Dean
I have been reading through the documentation for the stream api and the user stream api and I'm not sure why everyone is getting so upset about. It looks like this is going to benefit developers and allow Twitter to maintain a more stable environment which is a good thing for us. I understand

[twitter-dev] twitter sdk for iphone login problem

2011-02-11 Thread engr_ AsadUllah
i am using twitter sdk in iphone application. i have downloaded twitter sdk from this site. http://mobile.tutsplus.com/tutorials/iphone/twitter-api-iphone/ place the consumer key and secret in the code and then build and run the application but each time the application gives me this error: Sorry

[twitter-dev] Using the geo/search - can't seem to get any results

2011-02-11 Thread Matt
Hi there. I want to grab a set of tweets from an arbitrary location. I'm using http://dev.twitter.com/console to play with. Selected the geo/search method. Added parameters of query and london. Hit Send, get back: { errors: [ { code: 12, message: You must provide valid

[twitter-dev] Is it possible to share link with display parameter for mobile view ?

2011-02-11 Thread Nicolas Roussel
Hello, I would like to do a simple thing. If I use this link ( http://twitter.com/share/?url=http://www.google.com ) on my iphone Or android the display is not adapted to my device... Is it possible to add a simple parameter to display a mobile template about share page ? And a URL callBack ?

Re: [twitter-dev] Is it possible to share link with display parameter for mobile view ?

2011-02-11 Thread Taylor Singletary
We don't have a mobile view for this share flow yet -- but we've definitely gotten many requests for it and it's naturally something that we'll provide some day. @episod http://twitter.com/episod - Taylor Singletary - Twitter Developer Advocate On Fri, Feb 11, 2011 at 6:54 AM, Nicolas Roussel

Re: [twitter-dev] Using the geo/search - can't seem to get any results

2011-02-11 Thread Taylor Singletary
We don't recommend our dev console really for all the reasons you list -- you'll find much more joy in using Apigee's Twitter console at http://app.apigee.com/console/twitter You may also want to consider Twurl at http://github.com/marcel/twurl-- Also, since this method doesn't require

[twitter-dev] Re: Is includes_rts=true for statuses/mentions broken?

2011-02-11 Thread Adam Duke
I figured out why I was not seeing native retweets being included in my results. I was calling api.twitter.com/statuses/user_timeline, but should have been calling api.twitter.com/1/statuses/user_timeline. Adding the 1/ for the api version made the difference. Perhaps that is the cause of Anil's

[twitter-dev] user stream api

2011-02-11 Thread Trevor Dean
I can't seem to find any documentation that shows how to go about sending a DM using the new user stream api. I have been through all of the documentation on dev.twitter.com. Can someone point me in the right direction? Thanks, Trevor -- Twitter developer documentation and resources:

Re: [twitter-dev] user stream api

2011-02-11 Thread Taylor Singletary
Hi Trevor, Write operations in the Twitter API are always done via the REST API. The Streaming APIs are for consumption of data. @episod http://twitter.com/episod - Taylor Singletary - Twitter Developer Advocate On Fri, Feb 11, 2011 at 7:52 AM, Trevor Dean trevord...@gmail.com wrote: I can't

Re: [twitter-dev] user stream api

2011-02-11 Thread Trevor Dean
Thanks Taylor. I posted a question to the group yesterday but it might have gotten lost amongst all the other posts about not whitelisting anymore. With our service we rely on sending DM's and we will most likely require to have more of our clients whitelisted. What is will be the future of DM

Re: [twitter-dev] Re: basic authentication not supported error

2011-02-11 Thread Taylor Singletary
I haven't done much Flash coding -- I know there are a few approaches to coding in Flash and that there are OAuth libraries available. You might want to check out this library: http://code.google.com/p/oauth-as3/ Also, there's an AIR-based open source project called Spaz that you can look at,

[twitter-dev] Re: Update on Whitelisting

2011-02-11 Thread Ian Irving
Thanks Matt! the trends.api.twitter.com server is working great. Question : what are the Rate Limit restrictions against that server? I am being very careful to respect the as_of time stamp for last request against a specific WOEID, but give 42 locations (the world plus 41 counties and cities)

[twitter-dev] Re: Update on Whitelisting

2011-02-11 Thread Ian Irving
Hey Ed! I hope you can use Twendr! Yes this is on the five-minute cycle like the main Trending Topics feed. send me money and I'll create a Promoted trends just for you :) (hu...) Ian On Feb 10, 8:48 pm, M. Edward (Ed) Borasky zn...@borasky- research.net wrote:  On Thu, 10 Feb 2011

Re: [twitter-dev] Re: Update on Whitelisting

2011-02-11 Thread Matt Harris
Hi Ian, One step at at time. The server is experimental, which is why it isn't documented anywhere. I should have made that clear. Your feedback will let us know how it's performing. Because the server is hosting a cached version of the trends data you shouldn't find any issues with the rate

[twitter-dev] Twitter app development require guidance

2011-02-11 Thread raj kar
We are working on Twitter part of this proposed project. we are trying to access twitter from stand alone java application, but got stuck in between. Here is the action flow that we followed. 1. Registered our application with twitter got consumer secrete keys 2. Tried to get

[twitter-dev] Re: user stream api

2011-02-11 Thread DaveH
I too am still worried about the DM limits. If I understand the User API correctly. - The user stream means that an unlimited number of DMs can be received as there is no rate limit on receiving (consuming) of data. - The application would send DMs via the REST API and therefore is limited to

[twitter-dev] Re: Update on Whitelisting

2011-02-11 Thread Fishst1k
The one thing I am missing in this announcement is how this affects the rate limit of a non-authenticated request to the REST search API? Thanks, Ben -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http://twitter.com/twitterapi

Re: [twitter-dev] Re: user stream api

2011-02-11 Thread Adam Green
Be aware that the streaming API does not deliver everything you are tracking. In theory it delivers everything up to 1% of the total flow of tweets. In practice, I find that it delivers about 95% of the tweets that match your keywords or users. This is fine when sampling, which is what I generally

Re: [twitter-dev] Re: user stream api

2011-02-11 Thread Trevor Dean
I see that other developers are concerned about the future of getting your DM limits increased but I haven't seen a response yet that addresses this. Will there still be a way, on a case by case basis of course where we can request increases for DM limits? Thanks, Trevor On Fri, Feb 11, 2011

Re: [twitter-dev] Re: user stream api

2011-02-11 Thread M. Edward (Ed) Borasky
On Fri, 11 Feb 2011 13:25:07 -0500, Adam Green 140...@gmail.com wrote: Be aware that the streaming API does not deliver everything you are tracking. In theory it delivers everything up to 1% of the total flow of tweets. In practice, I find that it delivers about 95% of the tweets that match your

[twitter-dev] delay on search results

2011-02-11 Thread Lloyd
How long should I expect a new post to show up in a search result? Having just posted with #testing123123 http://search.twitter.com/search.atom?q=%23testing123123 Shows the result once. Then not again. And when I post it again from another account, the original one does show up , but then not

[twitter-dev] Re: Update on Whitelisting

2011-02-11 Thread whitmer
I'd also like to know the fate of DMing. On Feb 10, 7:07 pm, Trevor Dean trevord...@gmail.com wrote: Hey Taylor, what does this mean for DM limits and what’s the new path towards getting those limit increased for new accounts? Trevor Dean | Director big time design communication Inc. 647

Re: [twitter-dev] delay on search results

2011-02-11 Thread Jan Paricka
I would like to know as well, please. It appears to me as if for some users, search gets stuck showing only results from hours behind... Thank you, Jan On Fri, Feb 11, 2011 at 8:27 PM, Lloyd cled...@gmail.com wrote: How long should I expect a new post to show up in a search result?

[twitter-dev] Confused

2011-02-11 Thread gammer23
How do this work because i'm new to this? -- 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:

[twitter-dev] how to communicate with followers

2011-02-11 Thread Carlos Eduardo
I need a help, I'm developing an app for a client where it needs to communicate with his followers individually, each follower will receive a different link, the solution would be to have DM, but with a limit of 250 per day this becomes impossible, try sending mentions twitter but suspends the

[twitter-dev] I've got the error:OAuth Authentication Failed.And I tried all the wordpress to twitter plugins.

2011-02-11 Thread Winson
Hi there. Using WP 3.0.5and WP to Twitter 2.2.6 on a CentOS server, which I don't manage at all. I've got the error OAuth Authentication Failed. Check your credentials and verify that Twitter is running.. I've also checked all the data from the application, including erasing the older and

[twitter-dev] Re: Is includes_rts=true for statuses/mentions broken?

2011-02-11 Thread Anil Chawla
Abraham, you are right that I had the wrong understanding of the parameter. When I read the timeline will contain native retweets in addition to the standard stream of tweets I didn't realize it meant native retweets of the mentions themselves. It makes sense to me now but I am not sure how that

[twitter-dev] Looks like our application is DOA...

2011-02-11 Thread pl
I've just been reading the messages on here wabout the whitelisting changes, rate limits, streaming API etc and can only come to the conclusion that the application we were just about to launch to our users is going to have to be cancelled. It's a simple application that uses DM to send

Re: [twitter-dev] Re: Update on Whitelisting

2011-02-11 Thread Abraham Williams
Whitelisting never impacted DM limits or Search API limits. Niether of those are affected by @rsarver's announcement. Abraham - Abraham Williams | Hacker Advocate | abrah.am @abraham https://twitter.com/abraham | github.com/abraham | blog.abrah.am This email is: [ ] shareable [x] ask

Re: [twitter-dev] Looks like our application is DOA...

2011-02-11 Thread Trevor Dean
Our product is in danger of suffering the same fate. I have posted to this group a couple of times today hoping to get a response from twitter regarding the future of DM's but haven't got a response yet. I can only imagine they are trying to get through all of the emails requesting the same

[twitter-dev] Re: Looks like our application is DOA...

2011-02-11 Thread pl
Well, guess we just have to wait and see, but to be honest I get the feeling that we are just going to have to can this project. It's a shame that this has happened, all we can do is explain to or customers that it is a situation outside of our control and that it's twitter that are preventing