I'm new in web programming. I want to build a crawler for crawling the social graph in Foursquare by Python. I've got a "manually" controlled crawler by using the apiv2 library. The main method is like:

def main():
    CODE = "******"
    url = "https://foursquare.com/oauth2/authenticate?client_id=****&response_type=code&redirect_uri=****"
    key = "***"
    secret = "****"
    re_uri = "***"

    auth = apiv2.FSAuthenticator(key, secret, re_uri)
    auth.set_token(code)    
    finder = apiv2.UserFinder(auth)        

    #DO SOME REQUIRES By USING THE FINDER
    finder.finde(ANY_USER_ID).mayorships()
    bla bla bla

The problem is that at present, I have to type the url in my browser and picking up the CODE from the redirect url, and then update the CODE in my program, and run it again. I think there might be some way that I can code the CODE taking progress into my current program and make it automatic.

Any instruction or sample code is appreciated.

link|improve this question
feedback

3 Answers

You should check out the python-oauth2 module. It seems to be the most stable thing out there.

In particular, this blog post has a really good run down on how to do Oauth easily with Python. The example code uses the Foursquare API, so I would check that out first.

I recently had to get oauth working with Dropbox, and wrote this module containing the necessary steps to do oauth exchange.

For my system, the simplest thing I could think of was to pickle the Oauth client. My blog package just deserialized the pickled client and requested endpoints with the following function:

get = lambda x: client.request(x, 'GET')[1]

Just makes sure your workers have this client object and you should be good to go :-)

link|improve this answer
1  
Thank you for your attention, sir. I have a question that in the blog, it seems like the "code" is not required for taking the taken. Is that true? Cause in my library, the code is a required parameter to access token. I just update my code part. Hope to make the question more clear. – user1056824 Jan 28 at 5:52
If I'm reading your code correctly, the CODE variable in your program is not needed; it's handled by Python-Oauth2. – mvanveen Jan 28 at 7:13
I'll try it. Thank you. :) – user1056824 Jan 28 at 17:41
I followed the steps in the blog you recommend, but got the 404 Not Found error while doing the client.request step. I checked the code, compared to the lib apiv2.py. I think this lib is actually for the oauth 1.0 not the oauth 2.0. – user1056824 Jan 28 at 18:28
Sorry about that! I used the blog post to derive my Dropbox implementation and had not tried it on Foursquare. There are some promising directions mentioned in this thread. Looks like there's a fork of python-oauth2 here which does have oauth2 support. – mvanveen Jan 29 at 1:01
feedback

Get your app authenticated by oauth2 first. This is an example of how to use oauth for twitter authentication. http://popdevelop.com/2010/07/an-example-on-how-to-use-oauth-and-python-to-connect-to-twitter/

Similarly, you can find more examples, at https://code.google.com

Then you can use BeautifulSoup or lxml for html parsing. You can extract relevant data from page source that you will get after your request is complete.

BeautifulSoup Documentation - http://www.crummy.com/software/BeautifulSoup/

To download images, videos, etc you can use openers. Read more about openers on http://docs.python.org/library/urllib2.html

link|improve this answer
feedback

You don't have to do it every time. They'll give you a token that is good for X hours/day. Eventually you'll get 403 http code and you'll need to re-authenticate

link|improve this answer
I do get a token in the 'bla bla bla' part, something like autu.set_token(CODE) to get the authorization. But there is limitation for each token to request the server. I want to crawl users' relations and their venues. It seems cost a lot of requests that after crawling like 20 users, the token expires and I have to apply a new one. As the "code" is required for getting the token, I have to get the authorization by using my personal account. That's the part that I try to convert automatically. Or I wonder if there are other ways that can crawl the data without the "code" and token. – user1056824 Jan 28 at 5:45
feedback

Your Answer

 
or
required, but never shown

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