I am thinking of a scenario and I need your opinions whether this is even possible.
I have a normal website, on this website I have a form and by sending the form it should be also sent to one specific facebook page. As a normal page status update. Now I do not want to force my users to register to facebook in order to send the form.
By reading some articles here and the facebook API I think this could be possible, but I have one problem I can not solve:
- Facebook app creation
- Getting user token of the admin
- Getting the page access token to post on the page wall
These points (1-3) should work fine, BUT here is my problem:
If I am right the token expieres after some time - How is it possible to get a token which does not expire? Or are there some other ways to solve this problem?
This is the working code to post on the facebook page:
$attachment = array(
'access_token' => 'BACyul4fRfyEmI3xwMDs..........................',
'message'=> "Hello Test"
);
$result = $facebook->api('/'.$page_id.'/feed', 'POST', $attachment);
I am really stuck and would love to see some other approaches.
(sorry for my bad english but i am really desperate to know whether this is even possible.)