After I login facebook I want to save the content of https://www.facebook.com/pages (no specific page id but the url as you see it, and see suggested Favorite Pages, not pages I like or selected)
I am not trying to obtain the list of the pages the user admins, nor the list of pages they like. So /me/accounts or /me/likes are not useful. I try to obtain all the pages that are added in Facebook, from the last time I visited this url and it suggests them as pages I may like
I am using the example of http://developers.facebook.com/docs/reference/php/ and I take the profile of user I have. So far so good.
I tried to retrieve data using
$facebook->api('/me/pages'),
$facebook->api('/pages'),
$facebook->api('/pages'),
$facebook->api('/id=USER_ID/pages')
and so on but all of them where wrong or by using Graph API pages?id=USER_ID there were Unsupported get/post request.
As Igy said "Suggested pages is not a feature of the API, only the facebook.com interface"
Something else I tried is to save the url with file_get_contents. As urls I used the
ini_set('user_agent','MSIE 4\.0b2;'); //to pretend that I am a browser, it works
http://www.facebook.com/pages?id=USER_ID and
http://www.facebook.com/pages
Although the save is done properly, facebook doesn't recognize the authorization and shows the page I want but for users without login.
I tried javascript in Facebook JavaScript Test Console and after logging in it opens the page recognizing authorization. The code is
<div id="authResponse"></div>
<script>
var
div = document.getElementById('authResponse'),
showAuthRecord = function(response) {
if (!response.authResponse) {
div.innerHTML = '<em>Not Connected</em>';
} else {
var html = '<table>';
for (var key in response.authResponse) {
html += (
'<tr>' +
'<th>' + key + '</th>' +
'<td>' + response.authResponse[key] + '</td>' +
'</tr>'
);
}
div.innerHTML = html;
}
};
FB.getLoginStatus(function(response) {
showAuthRecord(response);
FB.Event.subscribe('auth.authResponseChange', showAuthRecord);
});
window.open('https://www.facebook.com/pages','mywin','left=20,top=20,width=500,height=500,toolbar=1,resizable=0');
</script>
Is there a way to do this in PHP, or Graph API or FQL Query ? Or add in javascript, code to save the page I open ? I haven't found anything yet.
/me/accountsor/me/likes- have you looked at the User documentation? – Igy Jan 10 at 19:14