Я пытаюсь добавить fb-комментарии на мою html-страницу, которая является частью приложения facebook, например:
data-href="http://ec2-107-22-163-16.compute-1.amazonaws.com/?userid=<?php echo $userId ?><?php echo $userTBID ?> "
, когда я пытаюсь отобразить страницу, я получаю эту ошибку:
Warning: http://ec2-107-22-163-16.compute-1.amazonaws.com/?userid=55700201320 is unreachable.
но я получаю к нему доступ из внешнего мира.
now when i click the link , im rederected to the debbuger that tells me this :
Critical Errors That Must Be Fixed
Error Scraping Page: Bad Response Code
Errors That Must Be Fixed
Missing Required Property: The og:url property is required, but not present.
Missing Required Property: The og:type property is required, but not present.
Missing Required Property: The og:title property is required, but not present.
Open Graph Warnings That Should Be Fixed
Inferred Property: The og:url property should be explicitly provided, even if a value can be inferred from other tags.
Inferred Property: The og:title property should be explicitly provided, even if a value can be inferred from other tags.
что это я, только то, что можно добавить виджет комментариев, уникальный для каждого пользователя, который вошел в систему
ОБНОВЛЕНИЕ:
я добавил теги og, но все же, когда я помещаю URL в отладку, я получаю код ответа: 403
вот что я добавил:
<head>
<title>encomia</title>
<meta property="og:title" content="MyAppName"/>
<meta property="og:url" content="http://ec2-107-22-163-16.compute-1.amazonaws.com/?userid=<?php echo $userId ?><?php echo $userTBID ?>" />
</head>