I want to build a Facebook web application that uses the graph API to show only the albums of a specific user. That user is always the same, and I know his credentials.
My code so far:
$this->facebook->api("username/albums?access_token=" . $this->access_token);
But I get the following exception:
[error] => Array
(
[message] => A user access token is required to request this resource.
[type] => OAuthException
[code] => 102
)
I need to generate an acces_token that lives forever and is able to retrieve this information, because right now I can only access public data. Where do I have to start?