I can't find some relevant answers for my question.
I have manually edited single.php file from my WordPress theme and I included the Facebook php-sdk and I require Authentication before accessing the posts. So when the users access the posts they will be redirected to Application Permissions, after allowing it they will be sent back to the post and view it. This is working fine at the moment.
The problem is with the Adsense;
- If I put the authentication code before the ads I get crawler errors because Google can't access the content without allowing my application.
- If I put the authentication code after the ads, maybe at the end of file I get a doubled or tripled number of pageviews in Adsense, because ads will show at first visit => user gets to Facebook app => then user will come back to the post.
This is some of the code to request permission:
require_once( "fb/facebook.php" );
$facebook = new Facebook(array( "appId" => "***", "secret" => "***" ));
$session = $facebook->getUser( );
$loginUrl = $facebook->getLoginUrl( array( "scope" => "user_status,publish_actions" ) );
So I am wondering how can I allow Google crawler to access the site with a Facebook authentication? I don't know what to edit to robots.txt
Any help would be kindly appreciated.