I went to the http://developers.facebook.com/docs/reference/javascript/FB.init/ page and copied the "asynchronous" code at the top of the "body" of my html. As of this writing, I'm not yet sure if it will solve my Google Analytics issue with the FB code appending to my URLs.
But I have 2 related questions:
1) a previous answer shows how they changed their html header, incl. this:
xmlns:og="http://opengraphprotocol.org/schema/"
but I've read from the (I think this was my source) Open Graph site, to add to the header this:
xmlns:og="http://ogp.me/ns#"
What is the difference? Is one wrong?
2) In this code snippet, I don't have an appId. I have an admin ID (admin of a FB page). Do I just delete that line, leave it saying "MY APP ID", or what?
example:
<div id="fb-root"></div> <script>
window.fbAsyncInit = function() {
FB.init({
appId : 'MY APP ID',
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true, // parse XFBML
channelUrl : 'http://www.example.com/channel.html' // custom channel
}); };
Thank you to anyone who can clear this up!