I'm using this http://blog.carduner.net/2011/09/06/easy-facebook-scripting-in-python/ to interface with facebook's graph api via python.
My problem is that I can't seem to upload photos to a fan page. Instead it uploads onto my wall. However, I can post comments fine on the fan page.
from urllib import urlretrieve
import imp
urlretrieve('https://raw.github.com/gist/1194123/fbconsole.py', '.fbconsole.py')
fb = imp.load_source('fb', '.fbconsole.py')
fb.AUTH_SCOPE = ['publish_stream', 'manage_pages']
fb.authenticate()
fb.graph_post("/<fan page id>/photos", {"message":"My photo", "source":open("photo.jpeg")})
Does anyone else have a problem with upload photos to fan pages?