I want to make a script that lets me post to my facebook fan page (which I'm an admin of)
As far as I've seen, Most graph api examples are about making facebook apps in python and make them communicate with python, which is quite different from what I want.
Also The graph api requires the oauth token, which the documentation claims it's obtained by doing:
https://www.facebook.com/dialog/oauth? client_id=YOUR_APP_ID&redirect_uri=YOUR_URL
I think this implies:
a) I HAVE to create a facebook app for this, which I didn't think it was necessary (after all it's something that would require only my standard credentials and wouldn't be used by other people), but it is fine. I have an app created for this task.
b) I need an URL, which I don't have, because it's just a script.
Any ideas on where I should look for some info?