我对 Open Graph Actions 很陌生。所以,无法解决这个小问题。
我正在开发一个画布应用程序,其中我使用了内置的阅读文章元标记
<head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# article: http://ogp.me/ns/article#">
<meta property="fb:app_id" content="APP ID" />
<meta property="og:type" content="article" />
<meta property="og:url" content="http://apps.facebook.com/myapp/article?postid=1" />
<meta property="og:title" content="Underwater Shades" />
<meta property="og:image" content="http://2.bp.blogspot.com/-Z-yBlXMMYWo/UBUYe-Lc46I/AAAAAAAAAxc/VO9XB7Ls-sY/s640/Under+water.JPG" />
如果你注意到了,我在og:url
. (我希望用户在点击链接时被定向到应用程序)
现在,我最初只是添加了“Like”社交插件来检查一切是否正常!令人惊讶的是它不起作用。
这是调试器显示的内容:
Response Code: 401
Tiny og:image: All the images referenced by og:image must be at least 200px in both dimensions. Please check all the images with tag og:image in the given url and ensure that it meets the minimum specification.
# Raw OG Document Information
Meta Tag: <meta property="fb:app_id" content="365662310180674" />
Meta Tag: <meta property="og:url" content="http://apps.facebook.com/myapp/article?postid=1" />
Meta Tag: <meta property="og:site_name" content="Surya Test App" />
Meta Tag: <meta property="og:type" content="website" />
Meta Tag: <meta property="og:image" content="https://s-static.ak.facebook.com/rsrc.php/v2/y_/r/9myDd8iyu0B.gif" />
Meta Tag: <meta property="og:title" content="Surya Test App" />
问题出在哪里,我应该如何解决。