I've been using these widgets to popular a dashboard that was using facebook API endpoint to grab insight data from the fan pages that I am an admin for.
Today my 60 day access token expired and I've tried renewing it, generating a new one, even as far as creating a new app to try and access this data but nothing seems to work.
I was using the graph API explorer tool to see the data that I could access located here but even when I generate a new access token, no data is being displayed.
Is there any thoughts on how I can get another or renew the current access token that I have?
Also if there's any information that you want me to present please ask.
The login code that I'm using is as followed:
I'm using a SDK kit that I got from Think Diff and adjusted it to hold the javascript login:
<script type="text/javascript">
// Facebook status
function getPermission() {
FB.login(function(response) {
if (response.authResponse) {
accessToken = response.authResponse.accessToken;
console.log('getPermission: ' + accessToken);
}
if (response.session) {
if (response.perms) {
// user is logged in and granted some permissions.
FB.api('/me/accounts', function(response2) {
//console.log(response2);
//document.getElementById("fbid").value = response2.id;
});
getStatus();
} else {
// user is logged in, but did not grant any permissions
/*
FB.api('/me', function(response2) {
//document.getElementById("fbid").value = response2.id;
});
*/
//getStatus();
}
} else {
// user is not logged in
//getStatus();
}
}, {scope:'publish_stream,manage_pages'}); //{perms:'email,publish_stream,read_friendlists,user_photos'}); http://developers.facebook.com/docs/authentication/permissions/
}
function getStatus() {
FB.getLoginStatus(function(response) {
// Response
if (response.authResponse != null) {
accessToken = response.authResponse.accessToken;
console.log('getStatus: ' + accessToken);
// logged in and connected user, someone you know
FB.api('/me/accounts', function(response2) {
//console.log(response2);
});
//var pageID = '7985526588';
FB.api('/<?php echo $pageID; ?>?fields=access_token', function (resp) {
console.log(resp);
pageAccessToken = resp.access_token;
//console.log('api: ' + resp.access_token);
});
} else {
// no user session available, someone you dont know
getPermission();
//alert(console.log);
}
});
}
</script>
I also have a javascript that allows me to add the app to which ever fan page I am an admin of.
With this I can go to my domain, login and have everything work. There is no errors that happen when I login.
Even when I use the graph API explorer, no errors are presented and nothing just shows up in the 'data'.
Any other information that is needed please feel free to ask - Thanks for taking the time to read this.
thanks