Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I was looking a way to add a very simple twitter functionality into my script and was surprised to find out that after Twitter shut down basic authentication there's no simple way to just send a stupid tweet from your script. Every approach I found requires special modules which has several dependencies. Moreover none of the examples I found in internets worked for me. Could someone please help me to find simple and elegant way to send a tweet from a perl script using OAuth?

P.S. The only conceivable example I found was this Ruby code: http://twoism.posterous.com/a-no-bullshit-twitter-oauth-example

share|improve this question
1  
Be detailed and constructive: explain what exactly you tried and what did not work. – daxim Jun 20 '11 at 17:31
1  
You're new here - so welcome. People want help you with investing time answering your question. Please, be polite. If you know better way as you already get suggested - simply post the better answer. Community will vote. Enjoy SO. ;) – jm666 Jun 20 '11 at 19:26
1  
Serg, so your real problem is that you think you cannot install modules. That surely can be helped, you should have mentioned this piece of information in the beginning. Please add the details what makes you think so to your question (this means writing more than "it didn't work"!), or open a new question if the advice from stackoverflow.com/q/65865 did not clear everything up already. – daxim Jun 21 '11 at 8:14
2  
Going against the grain of the Perl culture (using library code) is not advisable. You want little code: can't get shorter than the 3 lines use … new … update. The module has only 5 direct non-core dependencies and installed within a minute on my Linux systems just fine. – daxim Jun 21 '11 at 8:15
show 4 more comments

2 Answers

Short version: Twitter uses OpenAuth, there's nothing you can do about that, if you're going to use the API and do it properly.

Long version:

  • Twitter requires OpenAuth
  • Perhaps unfortunately, the latest Net::Twitter module, which you need because of the OpenAuth, does use Moose and have a lot of dependencies
  • But ... if you have a problem installing modules, then that's big issue and a separate issue. You're going to have to get past this or stop asking questions of Perl programmers, because they won't be sympathetic. Knowing how to handle modules is part of being a good programmer.
  • If it's really insurmountable right now, maybe you could get around it by using WWW::Mechanize to script Twitter interaction as if doing it by browser?

I've never tried it that way but it might work.

share|improve this answer

To be able to send a simple tweet you may need to communicate with the Twitter server using https (as per the Ruby code example) which will require you to have an SSL library. The Ruby code you reference relies on 7 external libraries of which 4 are specifically required to support https/SSL.

At the very least, you'll need LWP with baked-in support for SSL, which requires the OpenSSL libraries and programs which can be downloaded from http://www.openssl.org/ or if you are running under Linux, you should be able to use the platform specific package manager.

share|improve this answer
I´m not good in Ruby but I like the approach of this guy. I´m looking for easiest way to post a single tweet with as less code as possible. – rcknr Jun 20 '11 at 18:34
From everything I've seen regarding the topic, I found this solution as the most elegant for simple tweet sedning: jims-tech.blogspot.com/2011/03/twitter-oauth-perl-module.html – rcknr Jun 20 '11 at 21:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.