0

这是我的对象的一个​​例子:

<head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# openfever: http://ogp.me/ns/fb/openfever#">

 <meta property="fb:app_id"                      content="260740230708137" /> 
 <meta property="og:type"                        content="openfever:plan" /> 
 <meta property="og:url"                         content="http://app.feverup.com/openFever/index.html" /> 
 <meta property="og:title"                       content="Sutton Club" /> 
 <meta property="og:image"                       content="http://www.gettyimages.es/images/marketing/frontdoorStill/PanoramicImagesRM/FD_image.jpg" /> 
 <meta property="openfever:precio"               content="18€" /> 
 <meta property="openfever:fevers_dentro"        content="12" /> 
 <meta property="openfever:porcentaje_de_chicas" content="60%" /> 
 <meta property="openfever:price" content="40€" />

这是发布操作的代码:

FB.api(
                '/me/openfever:getin',
                'post',
                { 
                    plan: 'http://app.xxx.com/openxxx/index.html',
                    //place: 'suttonoficial', 
                    place: 'Opiummar',
                    tags: '728885016',
                },
                function(response) {
                   if (!response || response.error) {
                      console.log(response.error);

                   } else {
                      console.log(response.id);
                   }
        });

动作和对象已发布。但我有一个问题。我如何发布不同的对象?这意味着,改变价格,图像..

如果我更改对象的某些属性,则不会更新对象。但是,如果我使用对象调试器,所有已发布的对象都会更新。不止一个。

我的问题:可以发布多个对象吗?

4

1 回答 1

0

我如何发布不同的对象?

通过在不同的URL 下提供数据……</p>

Open Graph 对象基本上只是URL。因此,如果您想拥有多个对象,请设置多个 URL,并让它们各自交付一个带有适当 OG 元标记集的 HTML 文档。

于 2012-07-30T10:29:38.010 回答