Я пытался поделиться своими данными на странице поста на 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'});
, но я не могу решить проблему для общего ресурсадинамические данные на фб