我试图将我的帖子页面数据分享到 fb,并且我的帖子页面数据在产品方面发生了变化,它来自服务器,之后我想在 fb 上分享这些数据,但我无法在 fb 分享页面上获取这些数据。
我尝试了以下概念以在 fb 上共享数据
1)ngx-social-button
2)
let url = "https://www.facebook.com/dialog/share?app_id=xxxxxxxxx&href="+location.href+"&picture="+this.product.productImageUrl;
let newwindow=window.open(url,'name','height=500,width=520,top=200,left=300,resizable');
if (window.focus) {
newwindow.focus()
}
并在发布数据到来时更新元动态
this.metaService.updateTag({property: 'og:title', content: product.productName});
this.metaService.updateTag({property: 'og:type', content: 'website'});
this.metaService.updateTag({property: 'og:image', content: product.productImageUrl});
this.metaService.updateTag({property: 'og:image:alt', content: product.productName});
this.metaService.updateTag({property: 'og:description', content: product.productDescription});
this.metaService.updateTag({property: 'og:url', content: location.href});
this.metaService.updateTag({property: 'og:image:height', content:'250px'});
this.metaService.updateTag({property: 'og:image:width', content:'250px'});
但我无法解决在 fb 上共享动态数据的问题