Using Httplib2 on Python Appengine

后端 未结 4 1733
攒了一身酷
攒了一身酷 2021-01-04 10:56

Why am I getting this error when running my application which is trying to OAuth with Foursquare?

import httplib2
ImportError: No module named httplib2
         


        
4条回答
  •  难免孤独
    2021-01-04 11:23

    I've created a simple example on how to do this when using Google App Engine. (https://github.com/muanis/foursquare-oauth-bootstrap) basically you need Google oAuth2 Client (http://code.google.com/p/google-api-python-client/) and httplib2 (http://code.google.com/p/httplib2/)

提交回复
热议问题