Quote:
Originally Posted by Stabatha
Some members trying to create an account are receiving the error.. This is happening at random and only via apps canvas.
Error getting your Facebook user account: An active access token must be used to query information about the current user.. Click back and try again.
|
Could be caused by the double declaration of the all.js. Maybe try removing this from your HTML code ...
<div id="fb-root"></div>
<script src="http://connect.facebook.net/en_US/all.js"></script>
<script>FB.Canvas.setAutoResize();</script>
Then add the
FB.Canvas.setAutoResize(); after the
FB.init call in the FB Connect
fbconnect_init template ...
Code:
window.fbAsyncInit = function() {
FB.init({
appId: '$vboptions[fbconnect_apikey]',
status: true,
cookie: true,
xfbml: true,
oauth : true
});
FB.Canvas.setAutoResize();
};