当我使用以下内容向 FB 发布操作时
curl -F 'access_token=AAAFxEPEoxQgBAGCUyzmyKGDJLoKe2uz1I823Uf8CUBfMagfrqvkRgNcif2ipJGDeNZBc9JBao1xB2pulEggmLF4wFC3HU8wqkWZAc3zAZDZD' \
-F 'topic=http://myurl.com/467564296596508' \
'https://graph.facebook.com/me/customapp:custom'
我明白了
Object at URL http://myurl.com/467564296596508 has og:type of 'website'. The property 'topic' requires an object of og:type 'customapp:custom'.
http://myurl.com/467564296596508的源代码
<html>
<head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# customapp: http://ogp.me/ns/fb/customapp#">
<title>Content Title</title>
<meta property="og:title" content="Content Title" />
<meta property="og:image" content="http://myurl.com/img_default.png" />
<meta property="og:description" content="Custom App Heading" />
<meta property="fb:app_id" content="405792556107016" />
<meta property="og:url" content="http://myurl.com/467564296596508" />
<meta property="og:type" content="customapp:custom" />
</head>
<body>
</html>
如何消除此错误?
问候阿杰