[twitter-dev] Get username from Twitter API

2010-06-28 Thread thomas
Hi all, I have created a Twitter app using oAuth for authentication. However, I cannot find any info on how I can retrieve the user's username in order to get his details. By user, I mean the one that granted my app permission and for whom the app is making the API calls Thank you

[twitter-dev] Re: Get username from Twitter API

2010-06-28 Thread thomas
Excellent Taylor Thanks a lot I was going crazy with this On 28 Ιούν, 17:19, Taylor Singletary wrote: > Hi Thomas, > > There are a few ways you retrieve this information. When you are on the > final leg of your OAuth transaction (exchanging a request token for an > access toke

[twitter-dev] OAuth for softwares

2010-02-09 Thread Thomas
Hello, still no OAuth solution for softwares (not web apps) ?

[twitter-dev] Incorrect signature

2011-01-16 Thread Thomas
Hello, I am trying to get the recent mentions with the twitter api but it returns the error "Incorrect signature". Here's my PHP code: http://api.twitter.com/1/statuses/mentions.xml? count=20"); $oauth_consumer_key = urlencode(""); $oauth_nonce = urlencode(sha1($time)); $oauth_signature_meth

[twitter-dev] Re: Incorrect signature

2011-01-17 Thread Thomas
My servers default time is PST but twitters time is EST I believe so that's why I added 3 hours. On Jan 17, 4:35 pm, "@epc" wrote: > On Jan 16, 2:10 pm, Thomas wrote: > > > > $time = time() + 10800; > > Why are you setting the timestamp for 3 hours in the fu

[twitter-dev] Re: Incorrect signature

2011-01-18 Thread Thomas
to > consider timezones.http://php.net/manual/en/function.time.php > -- > Yusuke Yamamoto > yus...@mac.com > > this email is: [x] bloggable/tweetable [ ] private > follow me on :http://twitter.com/yusukeyamamoto > subscribe me at :http://samuraism.jp/ > > On Jan 18, 2011, a

[twitter-dev] Sitebucket: Python based, threaded Site Stream monitor

2011-04-24 Thread Thomas
nd any problems or have requests, please submit a ticket https://github.com/thomasw/sitebucket/issues. Thanks, Thomas -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http://twitter.com/twitterapi Issues/Enhancements Tracker: http://code.google.c

Re: [twitter-dev] Re: Introduce yourself!

2010-02-24 Thread Thomas Woolway
Hi folks, I'm Tom Woolway, and I work on the TweetDeck desktop client (and hack around on various other things), based in London, UK. I now primarily work with AS3, but in a past life used to be write stuff in C and Python. I'm also heading to Chirp, look forward to meeting a lot of you there. Ch

Re: [twitter-dev] complete Retweet functionality in thirdparty apps

2010-02-24 Thread Thomas Woolway
Abraham, Are there any plans to make this any easier for developers to implement retweets-of-me in the short term? The best solution (for client devs) would obviously be a stream of the latest retweets, with the full original status object inline, but as it looks like this isn't going to happen, a

Re: [twitter-dev] Are there anyway to retrieve user profile from twitter API

2010-03-04 Thread Thomas Woolway
When you get the access token back from Twitter after the OAuth step, it should also include some basic user information - including the user id, from memory. Hope this helps, Tom On Wed, Mar 3, 2010 at 4:56 PM, xhe wrote: > I now want to enable user to link their twitter account to our > webs

Re: [twitter-dev] What is the correct OAuth API endpoint

2010-03-04 Thread Thomas Woolway
It's good to know that this is the recommended URI root for OAuth. Any chance of getting the docs ( http://apiwiki.twitter.com/Twitter-REST-API-Method:-oauth-access_token etc) updated to help out newcomers? Also, it might be worth adding a big NB that those resources aren't versioned - it's one of

Re: [twitter-dev] Problems with home_timeline and since_id

2010-03-04 Thread Thomas Woolway
Hi, Try https://twitter.com/statuses/home_timeline.json?since_id=9959648124 &count=50 The since_id is a limiting parameter - the API will give you statuses going back until either you hit the since_id or the count parameter. Otherwise you could theoretically set the since_id to 1 and get all 10 b

Re: [twitter-dev] All replies are appearing in home_timeline

2010-03-04 Thread Thomas Woolway
Yes, seeing this as well - seemed to start happening about 4 hours ago. Tom On Thu, Mar 4, 2010 at 11:59 PM, Chris Thomson wrote: > Replies from people I'm not following (not directly, and not through any > lists) are appearing in home_timeline. This hasn't always been the case, has > it? Is th

Re: [twitter-dev] link to disabled acct

2010-03-05 Thread Thomas Woolway
Twitter brings up a page saying something like 'This account has been suspended'. That's the same whether you try to open the user's profile page or an individual tweet. Tom On Fri, Mar 5, 2010 at 11:39 AM, Frank wrote: > If an account is disabled will a link to it on a webpage still bring > i

Re: [twitter-dev] Re: Sending geo-tagged tweets is broken? 502 Bad Gateway Error ...

2010-03-12 Thread Thomas Woolway
Yes, we're (TweetDeck) having the same issues, and it looks like Tweetie is as well - looks like something may have broken last night when rolling out the new geo features? Tom On Fri, Mar 12, 2010 at 10:20 AM, Rich wrote: > I'm seeing this too, whenever I send a lat or long parameter I get a >

Re: [twitter-dev] Re: Sending geo-tagged tweets is broken? 502 Bad Gateway Error ...

2010-03-12 Thread Thomas Woolway
; > ∞ Google me: http://www.google.com/search?q=andrew%20badera > > > > > > > > On Fri, Mar 12, 2010 at 6:49 AM, Thomas Woolway > wrote: > >> Yes, we're (TweetDeck) having the same issues, and it looks like Tweetie > is > >> as well - looks li

Re: [twitter-dev] PostDating of twitter messages

2010-04-07 Thread Thomas Woolway
Hi Alex, You're not going to be able to do that through the API (or anyone else)- it's a nice usecase, but allowing people to add tweets from 'back in time' would get very confusing, very quickly. Why not add a timestamp to the tweet body, to let people following know when it was written? Tom O

Re: [twitter-dev] Announcing Twurl: OAuth-enabled curl for the Twitter API

2010-04-20 Thread Thomas Woolway
Whitelisting still overrides oAuth rate limit. If you are whitelisted, you'll get 20,000 reqs/hour for your account, otherwise you'll get the default 350. Tom On Tue, Apr 20, 2010 at 10:04 PM, Jeffrey Greenberg < jeffreygreenb...@gmail.com> wrote: > I'm already a whitelisted app (Tweettronics.co

Re: [twitter-dev] Re: countdown to OAuth / basic auth removal / OAuthcalypse

2010-04-24 Thread Thomas Woolway
Hi Raffi, Great that we've got a date for basic auth deprecation, but is there any news/timescales on OAuth Echo? We've got nine weeks and counting to get the spec, get the service providers to implement it, build it into clients and get our user-bases to upgrade if they want to be able to upload

Re: [twitter-dev] Re: link wrapping on the API

2010-06-09 Thread Thomas Woolway
As well as everything that others have asked, I'm also concerned about the following: 1) Does this mean that tweets can effectively be infinite length - say I write a tweet with 120 chars of text and then http://www.a-really-really-really-long-url-maybe-with-a-message-encoded.com/in-the-middle-of-

Re: [twitter-dev] Applications which has access.

2010-07-01 Thread Thomas Woolway
Not through the API, although you can look at http://twitter.com/settings/connections to see which apps have access. Tom On Thu, Jul 1, 2010 at 10:14 AM, Anna wrote: > Hi, > > Is there any way to retrive the applications which has access to my > account? > >

Re: [twitter-dev] Previous_Cursor Not Working

2010-07-05 Thread Thomas Billenstein
I had the same problem with next_cursor. next_cursor_str worked fine. Thomas 2010/7/5 Ron : > Anyone else seeing a problem on Followers or Friends with > Previous_Cursor not working (returning a blank response)? >

Re: [twitter-dev] Re: Home_timeline and retweets

2010-07-05 Thread Thomas Woolway
I don't think that you're doing anything wrong - it's just a quirk of the API - you don't get any info in your home timeline on stuff you retweeted. I think this is because of the condition that you should never see a retweet if you would have seen it already in your timeline. This stops you from

Re: [twitter-dev] Checking if a user still has authorized access of my application

2010-07-16 Thread Thomas Woolway
I'd have thought calling verify_credentials would do it - you'll get a 401 and a specific error message to tell you that the key is no longer valid. Alternatively, why not try to perform your actions (like posting a tweet or retrieving tweets) and if they return a 401, use that to indicate that th

[twitter-dev] Re: Are there ANY advantage of using OAuth with client softwares?

2009-05-19 Thread Thomas Mango
Another advantage is that if a third party application's database is breached, all of the stored usernames and passwords would be exposed. If the third party application was using oauth, the access token and secret pairs are only useable if the consumer key/secret pair are found and these can be e

[twitter-dev] Twitter for Motorcycle Riders

2009-09-15 Thread Thomas Hirschmann
overnight stays / hotels for riders Ø finding out about the best food on the road Ø finding out about other riders in my area Could I help realize this with you? Best regards, Thomas Thomas Hirschmann <http://maps.google.de/maps?f=q&source=s_q&hl=de&geocod

[twitter-dev] Social Graph Methods followers/names ?

2009-09-29 Thread Thomas Hübner
lways slower on string. Better soulution would be to delivers the userID within the searchresults. Is there any way to realize this? I do not think that I'm the only one ho miss this. Best regards, Thomas

[twitter-dev] Re: Twitter Client App Not Posting

2009-09-29 Thread Thomas Hübner
If smthg. goes wrong you get an error back - in this very small XML Error document you have a XML node . You should log the error and post it here On 29 Sep., 17:16, akademicjeanius wrote: > Hello, I have a Twitter app that posts updates to Twitter every 5 > minutes (274 times per day).  About 8

[twitter-dev] Re: Posting App name for posts

2009-09-29 Thread Thomas Hübner
You have to register your App @ Twitter and user OAuth. If you use ASP.NET you maybe can use the TwitterVB Project (DLL) It includes the full OAuth Support. c_mcintosh schrieb: > I have a site posting updates to twitter using the api. I can either > have it say API or it says 'From Web', I am loo

[twitter-dev] Re: Social Graph Methods followers/names ?

2009-09-29 Thread Thomas Hübner
I would see this as second coice - userID in searchresults would be the better choice because a numeric comparing is in each case faster then string comparing Best would be to get both. From side of server (Database request) both things should be not to tricky to make. cheers, Thomas Nelu Lazar

[twitter-dev] Re: How to check if user is followed?

2009-10-03 Thread Thomas Hübner
you have the social graph methods which deliver ID's. Unfortunately the same API call for screennames is missed - so you never can make comparings with search API results because there is no userID in. friends/ids followers/ids cheers, Thomas twittme_mobi schrieb: > Hi guys, i tried fr

[twitter-dev] Re: Lookup lots of user_ids from screenames?

2009-10-03 Thread Thomas Hübner
you can use http://apiwiki.twitter.com/Twitter-REST-API-Method%3A-statuses%C2%A0friends together with the cursor to grab all your friends. Store this locally then you have all informations. Andrew McCloud schrieb: > Is it possible to lookup lots of user_ids from screenames without > being rate lim

[twitter-dev] Re: Return number of pages (or number of friends/followers) on first call with cursor

2009-10-04 Thread Thomas Hübner
You can use the socialGraph method before: http://apiwiki.twitter.com/Twitter-REST-API-Method%3A-friends%C2%A0ids If you have this you have the expected number of users. Jesse Stay schrieb: > I was wondering if it might be possible to include, at least in the > first page, but if it's easier it

[twitter-dev] Re: How to check if user is followed?

2009-10-04 Thread Thomas Hübner
> reasonable > to execute the social graph methods every time, because sometimes > users might > have thousands of followers.Isn't it the friendship/exists method that > needs to be fixed, > after all, it is just for checking if user is followed or not.. > > Thanks!Y

[twitter-dev] Re: Return number of pages (or number of friends/followers) on first call with cursor

2009-10-04 Thread Thomas Hübner
the Number of ID's is the number of followers you also can call http://apiwiki.twitter.com/Twitter-REST-API-Method%3A-users%C2%A0show first. Within the result you have 1031 293 however - you have to do an additional API call if you don't trust the pagewise calls Jesse Stay schrieb: &

[twitter-dev] Re: How to check if user is followed?

2009-10-05 Thread Thomas Hübner
gt; Hi Tomas, > > > Thanks for the clarification. > > One question - if you have many users, you will need to load all the > > IDs > > for All the users in the memory - isn't that too heavy?some of the > > users have 10+ followers. > > > Thanks. > &

[twitter-dev] Re: How to check if user is followed?

2009-10-07 Thread Thomas Hübner
currently logged-in users could take some > > memory > > resources but in general i agree with you...some caching along > > with a proper implementation should not harm :) > > > Thanks! > > > On Oct 5, 1:27 pm, Thomas Hübner wrote: > > > > I on

[twitter-dev] Re: Ignoring OAuth application authorization page once causes following pages not be able to load up

2009-10-07 Thread thomas cavanaugh
windows 98 and above 1 reboot 2 open"computer" go to storage drives click on properities., click on defrag or clear button defrag or clear NONESSENTIALS FROM THAT DRIVE.,reboot again if this doesnt solve the problem consult microsoft especially if it is windows vista operating system .there is a

[twitter-dev] Re: Ignoring OAuth application authorization page once causes following pages not be able to load up

2009-10-07 Thread thomas cavanaugh
roduce that issue on my machine, but wasn¹t able > too. > > > Perhaps someone else can weigh in with a response that¹s not about disk > > > defragmentation ;) > > > > > On 10/7/09 12:39 PM, "JDG" wrote: > > > > > > it didn't

[twitter-dev] removal from your site

2009-10-08 Thread thomas cavanaugh
please remove my name and all other pertinent information from your site, thank you /s/thomas cavanaugh

[twitter-dev] Re: Have you read the OneForty.com Developer Contract?

2009-10-10 Thread thomas cavanaugh
Henry the VIII HAD IT RIGHT,"The first thing i am going to do is kill all the lawwyers On Sat, Oct 10, 2009 at 10:25 AM, Duane Roelands wrote: > > No, no, a thousand times no. > > "Licensor further warrants to oneforty and its Customers and > Sublicensees that the Licensed Item shall be free from

[twitter-dev] Re: where will we be next year

2009-10-10 Thread thomas cavanaugh
where will twitter be in one year? On Sat, Oct 10, 2009 at 12:44 AM, Michael Steuer wrote: > > Is there a development question here? > > > > > On Oct 9, 2009, at 7:16 PM, tom wrote: > > >> With the 2010 elections coming soon,and an angry electorate I can see >> twitter playing an unheard o

[twitter-dev] Re: about OAuth

2009-10-10 Thread thomas cavanaugh
the only way to find out is to do it On Sat, Oct 10, 2009 at 2:05 PM, Oguzhan wrote: > > Hi Folks, > > I'm using OAuth in my twitter application and I was wondering > something. > > Have received the user's permission by OAuth. > I saved my database oauth_token after for example one day later. C

[twitter-dev] Re: AutoHashTags

2009-10-12 Thread thomas cavanaugh
do you ever get relevent information ,tech,,etc, from twitter,I have noticed some REALLY bad suggestions from subscribers./s/ tomMSCE On Mon, Oct 12, 2009 at 9:44 AM, Nigel Cannings < nigelcanni...@googlemail.com> wrote: > > Some testing help required for anyone interested. The theory is automat

[twitter-dev] Re: List of all accounts

2009-10-12 Thread thomas cavanaugh
why---so you can send them back to tehran On Mon, Oct 12, 2009 at 3:02 PM, Atul Kulkarni wrote: > Is there anyway of obtaining this list (list of all active users on > Twitter) ? or a BFS through friends and followers is the only way out of > finding most if not all users. > -- > Regards, > Atul

[twitter-dev] Re: Tweets Dataset for academia?

2009-10-14 Thread Thomas Woolway
Hi Atul, There is a fairly significant corpus of tweets available, although it is fairly old - see here: http://www.mail-archive.com/twitter-development-talk@googlegroups.com/msg05715.html. I believe that the second part has expired, but you should be unable to use the first part - it is several m

[twitter-dev] Re: Laying the foundation for API versioning

2009-10-16 Thread Thomas Woolway
Hi John, I'm still getting SSL issues with api.twitter.com - it seems like some attempts get the wildcard certificate, some get the old one. This is using Chrome and AIR. Let me know if you need any more information, Tom On Fri, Oct 16, 2009 at 11:14 AM, Rich wrote: > > Hi John, I replied dire

[twitter-dev] Re: C# + OAuth + account/update_profile_image = 500 Internal Server Error

2009-10-19 Thread Thomas Hübner
You can use TwitterVB which covers nearly the complete API in .NET (OAuth included). U find it on codeplex http://twittervb.codeplex.com/ Cheers, Thomas Nicholas Granado schrieb: > Simon, > > You would sign the request with all of the usual "oauth param" > suspects. If I

[twitter-dev] Re: IP Whitelisting rejected - ****** NO REASON ******

2009-11-13 Thread Thomas Woolway
Hi Yonas, Please search the group before posting - this question has been answered many times. I believe that Twitter are currently having problems with that email, but you can get an answer by mailing a...@twitter.com. Tom On Fri, Nov 13, 2009 at 2:05 PM, Yonas wrote: > > My request for IP w

[twitter-dev] Re: Streaming API -- Be tolerant of retweet annotation

2009-11-16 Thread Kapenda Thomas
I noticed that the retweet api still says coming soon. It is available yet for general consumption or do I have to have my developer API key approved for use? thanks, -k On Wed, Sep 9, 2009 at 10:56 AM, John Kalucki wrote: > > Once the retweet feature is launched, some statuses flowing through

Re: [twitter-dev] Re: statuses/followers incorrectly ordered

2009-12-02 Thread Thomas Woolway
Hi Wilhelm, Thanks for the follow up, The Twitter web site is still showing followers in the correct order - is this not something that can be extended to the API, and if not, why the disconnect? Thanks, Tom On Wed, Dec 2, 2009 at 7:32 PM, Wilhelm Bierbaum wrote: > Your observations are correc

Re: [twitter-dev] Re: Retweet API methods returning 404

2009-12-17 Thread Thomas Woolway
Looks like RT is back up. Tom On Thu, Dec 17, 2009 at 3:39 PM, cadams500 wrote: > Yes, I'm getting 404 errors as well. This was not happening yesterday. > > http://twitter.com/statuses/show/5211439124.xml does not return a 404 > http://api.twitter.com/1/statuses/retweets/5211439124.json returns

Re: [twitter-dev] http://twitter.com/statuses/friends.xml Improper order

2010-01-01 Thread Thomas Woolway
I believe that this is a known issue which the Twitter team are working on. There are messages in this group about the issue - a search should give you some more info. All the best, Tom On Thu, Dec 31, 2009 at 12:03 PM, srikanthsombha...@gmail.com < srikanthsombha...@gmail.com> wrote: > Hi, > >

Re: [twitter-dev] How can we change source name?

2010-01-06 Thread Thomas Woolway
The ability to specify source parameters through basic auth has been deprecated, and is only allowed for apps that used this before deprecation. You'll need to move to using oAuth for authentication, then you can specify the application source on your application page on Twitter.com Tom On Wed, J

Re: [twitter-dev] Not able to read unicode from Twitter Response XML in C#.net

2010-01-27 Thread Rejeev Thomas
Thanks Ryan! I am taking an XML response from * http://twitter.com/statuses/friends_timeline.xml* and it happens when I post a Tweet in my home language and trying to read it ,follwoing are some of the Text. * Wed Jan 27 04:19:36 + 2010 8265961626 ഇന്ത്യക്കാരുടെ ആശങ്ക പരിഗണിക്കണമെന്ന്

Re: [twitter-dev] Not able to read unicode from Twitter Response XML in C#.net

2010-01-27 Thread Rejeev Thomas
Please help friends! Thanks Ryan! > > I am taking an XML response from * > http://twitter.com/statuses/friends_timeline.xml* and it happens when I > post a Tweet in my home language and trying to read it ,follwoing are some > of the Text. > > * > > > Wed Jan 27 04:19:36 + 2010 > 82659616

Re: [twitter-dev] Not able to read unicode from Twitter Response XML in C#.net

2010-01-28 Thread Rejeev Thomas
ith System.Xml but whatever. >> >> Zac Bowling >> >> >> >> On Wed, Jan 27, 2010 at 9:10 PM, Rejeev Thomas wrote: >> >>> Please help friends! >>> >>> >>> Thanks Ryan! >>>> >>>> I am taking an XML res

Re: [twitter-dev] Re: null posts in home_timeline

2010-08-24 Thread Thomas Woolway
I'm seeing this in my home timeline - @tomwoolway. Matt, I've sent you the JSON output of my home timeline (seemed a bit big to spam the list with). Tom On Tue, Aug 24, 2010 at 8:22 AM, Kazuho Okui wrote: > I'm having same issue. It looks like null tweets appear when your > follower deletes the

Re: [twitter-dev] New twitter.com uses an OAuth app called "web"?

2010-09-21 Thread Thomas Woolway
If it's built on top of @anywhere, it will use OAuth 2.0. Tom On Tue, Sep 21, 2010 at 11:01 AM, Tom van der Woerdt wrote: > There are no OAuth_* parameters when making requests to api.twitter.com. > However, I do see a lot of cookies, including auth_token and > twitter_sess. I would assume that

Re: [twitter-dev] about image-size in newtwitter

2010-10-01 Thread Thomas Mango
er-api/issues/list > Change your membership to this group: > http://groups.google.com/group/twitter-development-talk > -- Thomas Mango tsma...@gmail.com -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http://twitter.com/twitte

Re: [twitter-dev] Re: Site Streams - Unfollow Events?

2010-10-01 Thread Thomas Mango
h.nethttp://twitter.com/znmeb "A mathematician is a device for turning coffee into theorems." - Paul Erdos - Thomas Mango @tsmango -- Twitter developer documentation and resources:http://dev.twitter.com/doc API updates via Twitter:http://twitter.com/twitterapi Issues/Enhancements Tracker:h

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

2010-10-02 Thread Thomas Mango
g for an answer like: "Use oAuth to have the user authorize your app on Twitter, then redirect redirect back to your app, click a twittter follow button, and extract their Twitter ID from "x_file" and then" My days of programming are way behind me so I hope that makes

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

2010-10-02 Thread Thomas Mango
h authorization. -- Thomas Mango On Oct 2, 2010, at 1:12 PM, "Dean Collins" wrote: > 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 direc

Re: [twitter-dev] add list members

2010-10-02 Thread Thomas Mango
/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: > http://groups.google.com/group/twitter-development-talk > -- Thomas Mango tsma...@gmail.com -- T

Re: [twitter-dev] bidirectional relationship

2010-10-04 Thread Thomas Mango
s? thanks ashwin -- Thomas Mango tsma...@gmail.com -- 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 gr

Re: [twitter-dev] how to login

2010-10-04 Thread Thomas Mango
iPhone so there is no interaction of user and browser. Is this possible? And also i need to pass a parameter with URL so that i cant get Allow and Deny window and i directly jumped on the callback URL. Please reply me ASAP. -- Thomas Mango tsma...@gmail.com -- Twitter developer documentation and

Re: [twitter-dev] ways to authorize users other then oAuth and xAuth?

2010-10-04 Thread Thomas Mango
an I utilize so I can send tweet on behave of my members? Thank you. -- Thomas Mango tsma...@gmail.com -- 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/

Re: [twitter-dev] Hotlinking images

2010-10-05 Thread Thomas Mango
r hotlink it instead? Whats the e-etiquette for this? Does Twitter encourage us to hotlink images? -- Thomas Mango tsma...@gmail.com -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http://twitter.com/twitterapi Issues/Enhancements Tracker: http

Re: [twitter-dev] Is the authorized user count for apps still available?

2010-10-05 Thread Thomas Mango
eeing somewhere a stat showing how many users had authorized API access for my app, but I can't seem to find it anymore. Is this number no longer available, or is it still there and I'm a dunce for not being able to find it? Thanks. -- Jon -- Thomas Mango tsma...@gmail.com -- Tw

Re: [twitter-dev] [SiteStreams] can't follow more than one user

2010-10-06 Thread Thomas Mango
s works GET /2b/site.json?with=followings&follow=11528912 HTTP/1.1 - this works too GET /2b/site.json?with=followings&follow=9512582 HTTP/1.1 - this always returns 401 UNAUTHORIZED GET /2b/site.json?with=followings&follow=11528912,9512582 HTTP/1.1 Any thing I'm missing here? Thank

Re: [twitter-dev] Re: User Streaming API and use of OAuth from web browser

2010-10-07 Thread Thomas Mango
ards, I presume it's intended not just for desktop, but also web clients too? 2. If 1 is correct, then is it OK to use JavaScript for the OAuth? If it's not, what is the recommended approach for a client side web application to connect and authenticate to the user_stream? Than

Re: [twitter-dev] Use twitterapi.update method to my own account via .net web app without human intervention

2010-10-07 Thread Thomas Mango
te my account to show the closures via my .net application. Problem is when using oAuth, I must sign in to allow the app access to my Twitter account. Is there any way that oAuth can do this without needing this step. -- Thomas Mango tsma...@gmail.com -- Twitter developer document

Re: [twitter-dev] How to test for one user following another

2010-10-07 Thread Thomas Mango
both using the Twulr Console. What am I missing? Thanks. -- Thomas Mango tsma...@gmail.com -- 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-a

Re: [twitter-dev] Re: How to test for one user following another

2010-10-07 Thread Thomas Mango
th the source_screen_name and target_screen_name. Besides, why shouldn't the other two methods work? They are documented methods. On Oct 7, 7:09 pm, Thomas Mango wrote: You should be providing both the source and a target user to the /friendships/show method. You can use source_id&

Re: [twitter-dev] What is the "new_id" in streaming API?

2010-10-08 Thread Thomas Mango
It has to do with the new id generation scheme: http://groups.google.com/group/twitter-development-talk/browse_thread/thread/9cf92935379d8022/e4eaa56485b2e2e7 D. Smith wrote: What is the meaning of the property "new_id" in json object returned from streaming api? -- Thomas

Re: [twitter-dev] Response format details?

2010-10-11 Thread Thomas Mango
t they are populated with. Thanks, Colin -- Thomas Mango tsma...@gmail.com -- 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 C

Re: [twitter-dev] Search Home Time Line

2010-10-11 Thread Thomas Mango
://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: http://groups.google.com/group/twitter-development-talk -- Thomas Mango tsma...@gmail.com -- Twitter

Re: [twitter-dev] Site Streams: Work Locally / 401 Unauthorized From EC2 (/cc @jkalucki)

2010-10-12 Thread Thomas Mango
ream1.frf.ly> 174.129.10.194 With the default security group on EC2, I don't think it's possible to ping the instance and I'm not sure if that's related or not. Thanks, in advance, for any help you can provide. -- Thomas Mango tsma...@gmail.com <

Re: [twitter-dev] Site Streams: Work Locally / 401 Unauthorized From EC2 (/cc @jkalucki)

2010-10-12 Thread Thomas Mango
.25) My EC2 instance is at: stream1.frf.ly <http://stream1.frf.ly> 174.129.10.194 With the default security group on EC2, I don't think it's possible to ping the instance and I'm not sure if that's related or not. Thanks, in advance, for any h

Re: [twitter-dev] URGENT: Advice on building the correct API stream

2010-11-16 Thread Thomas Mango
eloper 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: http://groups.google.com/group/twitter-development-talk -- Tho

Re: [twitter-dev] String IDs in keyless JSON arrays

2010-11-17 Thread Thomas Mango
the change, and I have to switch back to fix my app. What's the official word on this, please? -- Thomas Mango tsma...@gmail.com -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http://twitter.com/twitterapi Issues/Enhancements Tracker: ht

Re: [twitter-dev] Facilitating one-click login with OAuth

2010-12-14 Thread Thomas Mango
Hi Biggs, I think what you're looking for is "sign in with twitter". Check out this help doc: http://dev.twitter.com/pages/sign_in_with_twitter -- Thomas Mango On Dec 14, 2010, at 7:32 AM, BigglesZX wrote: > Hi all, > > First off apologies if this has already bee

[twitter-dev] Why is http://twitter.com/statuses/followers/... restricted, but /friends/... not?

2009-03-20 Thread Thomas Thurman
information for their Twitter account, but it seems a rather baroque solution.) Thomas

[twitter-dev] Tweet Button sending count.json request, even if it's not required

2011-02-03 Thread Thomas Peklak
t other times the response can be around 400ms and this is not really acceptable. Is this the right place to post this issue? I did not find another way to contact twitter directly. thomas -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: ht

[twitter-dev] users/lookup returns duplicates, missing records for valid users

2011-03-01 Thread Kurt Thomas
When using users/lookup with 100 random screen_names, I often get duplicate records, as well as missing records for valid users that are not deleted, suspended, or non-existent. Ive tested this with python-twitter as well as twurl. The responses I receive are non-deterministic; different users are

Re: [twitter-dev] twurl block is sending 502 even when it succeeds

2011-03-14 Thread Thomas Woolway
Hi Matt, We've been seeing this for a while - the block and report spam calls always return 502s (with a full page of HTML), even though they actually succeed. This doesn't seem to be tied into the stability of the rest of the API. This is happening across all of our clients, including those that

[twitter-dev] API requests redirect my server to /suspended

2011-05-01 Thread Thomas Feron
Hello, My application currently gets an access token and save it to a database for each member of my website. I checked the access tokens saved for my account and the ones in Your Apps > MyApp > My Access Token and they are correct. My account is not suspended and there is nothing on my applicatio

[twitter-dev] Re: API requests redirect my server to /suspended

2011-05-05 Thread Thomas Feron
Hey Arnaud, Thank you a lot for your help, I was missing something. Thomas Feron. On 2 mai, 05:41, Arnaud Meunier wrote: > Hey Thomas, > > "/statuses" is not a valid API endpoint, and our routing system assumes > you're trying to reach the "statuses" a

Re: [twitter-dev] TweetDeck technical problem

2011-05-29 Thread Thomas Woolway
Hi Patrick, You may find the answer here: http://support.tweetdeck.com/entries/181425-how-do-i-install-air-tweetdeck-in-linux-ubuntu-variants. If not, I suggest asking @desktopdeck to see if they can help. Best, Tom On Sun, May 29, 2011 at 2:37 AM, Patrick Kennedy wrote: > This is not strictly

[twitter-dev] Limit to total direct messages able to be sent?

2011-06-06 Thread Shane Thomas
I had this app that would use c# and twitterizer to merrily send a user direct messages, it has since ceased to do so (it still can use twitpic which will send status updates all good but direct messages no more. It will receive direct messages and purge them just won't send them out. I used the

[twitter-dev] inconsistent data when fetching the stream using location boxes

2011-06-21 Thread Thomas Alisi
r box coordinates focused on UK obviously do not include US, but we are receiving tweets from 37.1289787 -84.0832596 (namely: london, KY) is there some reverse geo-coding going on? many thanks thomas -- Twitter developer documentation and resources: https://dev.twitter.com/doc API updates via Twitter:

Re: [twitter-dev] inconsistent data when fetching the stream using location boxes

2011-06-22 Thread Thomas Alisi
64.669 (tweet id: 83428616981061633 - reverse geocode using google maps: barcelona, venezuela) so I am wondering how it can happen, provided that I am giving numerical coordinates for location boxes... hope this is clearer, many thanks thomas fetch stream: StatusListener listener = new Stat

Re: [twitter-dev] inconsistent data when fetching the stream using location boxes

2011-06-24 Thread Thomas Alisi
hence something like status.geoLocation() I will need to dig in the code to understand what's happening, I'll come back to you as soon as I have answers many thanks again, have a good day thomas -- Twitter developer documentation and resources: https://dev.twitter.com/doc API u

[twitter-dev] Getting error "The remote name could not be resolved: 'api.twitter.com' " while twitting data from my website

2011-08-04 Thread Richard Thomas
Hi. I am using Twitterizer Aouth API. Below is the code which I am using to connect to twitter from my website. stringconsumerKey = ConfigurationManager.AppSettings["consumerKey"]; string consumerSecret = ConfigurationManager.AppSettings["consumerSecret"]; if (System.Web.HttpContext.Current