· 7 years ago · Jul 08, 2018, 04:18 PM
1#!/usr/bin/env python
2# -*- coding: utf-8 -*-
3
4import facebook
5
6
7class SimpleFacebook(object):
8
9 def __init__(self, oauth_token):
10 self.graph = facebook.GraphAPI(oauth_token)
11
12 def post_message(self, message):
13 """Posts a message to Facebook wall."""
14 self.graph.put_object('me', 'feed', message=message)