fb分享动态内容发行角度

时间:2018-08-06 09:26:00

标签: angular

我的index.html中有以下几行:

<meta property="og:type" content="website" />
<!-- <meta property="og:url" content="http://urlsite.com/" />  -->
<meta name="fbDescription" property="og:description" content="description">
<meta name="fbJobTitle" property="og:title" content="jobtitle"> 
<meta name="fbImage" property="og:image" content="http://logo.png">
<meta property="og:site_name" content="spreadtrend" />

我有一种方法可以更新元标记,然后使用共享对话框在facebook上共享。

this.meta.updateTag({ name: 'fbDescription', content: this.jobDescription });
this.meta.updateTag({ name: 'fbJobTitle', content: this.jobTitle });
this.meta.updateTag({ name: 'fbImage', content: this.logo });

当我检查时,我拥有更新的内容,但是当我单击share时,内容保持不变。 facebook debugger还会显示旧信息。

我该怎么办?

0 个答案:

没有答案