Question:
I have copied the below code from here.
Now I altered the appid to mine, and the username to MyUserName.
If I only alter the appid, then it works, when I change the username to
MyUserName, then it displays this error:
Could not retrieve the specified page. Please verify correct href was passed in.
If I put in the URL http://www.facebook.com/MyUser.Name in my browser, then it shows the profile correctly.
Is there anything I have to switch in the facebook profile ?
<body>
<div id="fb-root"></div>
<script type="text/javascript">
(function (d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/it_IT/all.js#xfbml=1&appId=MY_APP_ID";
fjs.parentNode.insertBefore(js, fjs);
} (document, 'script', 'facebook-jssdk'));
</script>
...
<div id="facebook-box">
<div class="fb-like-box" data-header="false" data-stream="false" data-show-faces="false" data-height="100" data-width="220" data-href="http://www.facebook.com/MyUserName">
</div>
</div>