facebookarchive / fbconsole

A micro api client for writing scripts against the Facebook Graph API.
Other
325 stars 74 forks source link

fbconsole

fbconsole is a small Facebook API client for use in Python scripts.

You can install fbconsole using pip:

pip install fbconsole

Quick Start Guide

Authentication

For many API calls, you will need to authenticate your script with Facebook. fbconsole makes this easy by providing an authenticate function. If your script needs extended permissions, such as the permission to post a status update, you can specify which extended permissions to request using the AUTH_SCOPE setting. For example:

import fbconsole

fbconsole.AUTH_SCOPE = ['publish_stream', 'publish_checkins']
fbconsole.authenticate()

You can find a list of permissions in the Facebook Login Permissions reference.

During the authentication process, a browser window will be opened where you can enter in your Facebook credentials. After logging in, you can close the browser window. Your script will continue executing in the background.

The access token used for authentication will be stored in a file, so the next time your script is executed, the authenticate() function won't have to do anything. To remove this access token, you can call logout():

fbconsole.logout()

See below for other modes of authentication.

Graph API Basics

You can make HTTP POST requests using the post function. Here is how you would update your status:

status = fbconsole.post('/me/feed', {'message':'Hello from my awesome script'})

You can make HTTP GET requests using the get function. Here is how you would fetch likes on a status update:

likes = fbconsole.get('/'+status['id']+'/likes')

You can make HTTP DELETE requests using the delete function. Here is how you would delete a status message:

fbconsole.delete('/'+status['id'])

To upload a photo, you can provide a file-like object as a POST parameter:

fbconsole.post('/me/photos', {'source':open('my-photo.jpg')})

You can also make FQL queries using the fql function. For example:

friends = fbconsole.fql("SELECT name FROM user WHERE uid IN "
                        "(SELECT uid2 FROM friend WHERE uid1 = me())")

If you just want a URL to a particular Graph API endpoint, for example to download a profile picture, you can use the graph_url function:

profile_pic = graph_url('/zuck/picture')
urlretrieve(profile_pic, 'zuck.jpg')

Advanced Graph API

fbconsole also provides access and utilities around some more advanced Graph API features.

iter_pages

If you are trying to fetch a lot of data, you may be required to make multiple requests to the Graph API via the "paging" values that are sent back. You can use iter_pages to automatically iterate through multiple requests. For example, you can iterate through all of your posts:

for post in iter_pages(fbconsole.get('/me/posts')):
    print post['message']

More Authentication Options

By default, fbconsole will make all its requests with the app ID of the fbconsole Facebook app. If you want the requests to be made by your own Facebook app, you must modify the APP_ID setting. For example:

fbconsole.APP_ID = '<your-app-id>'
fbconsole.authenticate()

For the authentication flow to work, you must configure your Facebook app correctly by setting the "Site URL" option to http://local.fbconsole.com:8080.

If you don't want to change your app settings, you can also specify an access token to use directly, in which case you can skip authentication altogether:

fbconsole.ACCESS_TOKEN = '<your-access-token>'

As a means to set the ACCESS_TOKEN, fbconsole provides an automatic mechanism (Python 2.x only) for authenticating server-side scripts by completing the OAuth process automatically:

# WARNING: only supported for Python 2.x
fbconsole.automatically_authenticate(
    username,     # Facebook username for authentication
    password,     # Facebook password for authentication
    app_secret,   # App secret from Facebook app settings
    redirect_uri, # Redirect URI specified in Facebook app settings
)

This authentication method is particularly helpful when running cron jobs that grab data from the Graph API on a daily basis. If you have any trouble using the automatic_authentication method, be sure to double-check that the username, password, app secret, and redirect URI are all consistent with your app's settings.

Other Options

There are a few other options you can specify:

Feedback

For issues pertaining to fbconsole only, file an issue on GitHub. For issues with the Graph API or other aspects of Facebook's platform, please refer to the developer docs or file a bug.

License Information

fbconsole is licensed under the license found in the LICENSE file in the root directory of this source tree.