示例#1
0
def put_like(access_token, what_to_like):
    from fbbackends import FBGraphBackend
    backend=FBGraphBackend()
    backend.put_like(access_token, what_to_like)
示例#2
0
def post_pages(message, attachment=None):
    from fbbackends import FBGraphBackend
    backend=FBGraphBackend()
    backend.post_pages(message, attachment)
示例#3
0
def post_as_app(profile_id, message, attachment=None):
    from fbbackends import FBGraphBackend
    backend=FBGraphBackend()
    backend.post_as_app(profile_id, message, attachment)