up vote 6 down vote favorite
5
share [g+] share [fb]

I have a few already but wanted to merge them into one public domain oauth code library for twitter, facebook, friendfeed (and let other developers improve the library for their preferred connections).

I'm having a tough time just debugging mashing friendfeed and twitters oauth into one friendly python program running on the Google App Engine.

These are some of the pieces I have so far: http://oauth.net/code http://code.google.com/p/oauth-python-twitter/ http://code.google.com/p/friendfeed-api-example/

link|improve this question

67% accept rate
I have been pushing towards a lift solution, for the purposes of learning more about this web framework, and scala the language it's based upon. – Mark Essel Oct 6 '09 at 20:59
feedback

5 Answers

up vote 2 down vote accepted

Uh oh...

OAuth here she comes ... she's a scala-based-man-eater!

Full disclosure: I just remembered this article mostly because the title was catchy, more than that I fully grok and support the approach. But I try to think I steal<bs><bs><bs><bs><bs> appropriate ideas from the author enough that I think it's worth reading.

link|improve this answer
great link, read the article over quickly. Now giving it a careful read through. – Mark Essel Aug 2 '09 at 19:01
feedback

Here's a clean code version, written in scala, works in Java too.

http://github.com/ben-biddington/scala-oauth

[UPDATE]

Sorry, I renamed the repo:

http://github.com/ben-biddington/Coriander.OAuth

link|improve this answer
the page doesn't exist anymore – deamon Jan 9 '10 at 8:26
feedback

check out Signpost, it's written in Java, has a dead simple interface, and is service provider independent.

link|improve this answer
Signpost is okay, but if you need to do anything moderately out of the ordinary (eg. because you have to integrate with an unusual implementation on a server or because you have to work around bugs in your java platform) its use of final and private all over the place makes it very rigid and inflexible. Just a word of warning. – emmby Oct 2 '09 at 21:06
1  
Mike, can you open a ticket for this detailing which parts of its API you feel should be more flexible? – Matthias Oct 5 '09 at 14:45
Signpost does exactly what I needed it to do. Awesome. – Stefan Kendall Mar 12 '10 at 17:31
feedback

PyPI lists a few packages under OAuth, but I'm not sure how well they match your needs.

Also, there's an oauth on app engine subfolder in the gdata library for python that might be of interest.

link|improve this answer
Thanks ars I'll check them out, looking for simple/generic. I think the oauth twitter lib I grabbed fits that bill. A friend suggested I dig more into reading about web programming and write something from scratch before I try and go too far with using existing libraries. – Mark Essel Jul 31 '09 at 14:03
feedback

I recently saw a directory under the main scala lib http://www.scala-tools.org/mvnsites/liftweb/lift-oauth/index.html

nothing there yet, but maybe its "in the works"

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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