Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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;

  1. If I put the authentication code before the ads I get crawler errors because Google can't access the content without allowing my application.
  2. 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.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.