I want to update the status of a FAN-PAGE by PHP with the help of the Facebook graph api. google says: doesn\'t work.
Now I want to update my own user status by PHP.
my main problem is how to login my own user to the graph api (with php), without using a browser and without funny php workarounds.
There's no way for you to act on behalf of a user (even your own user) without interacting with him through a browser at least once to get the offline_access.
How to get the offline_access permission and how to use it from there onward is explained in this answer.
EDIT:
Please read the comments! thanks @zerkms!