我嘗試了許多事情和標籤,包括使用宏數據和JSON-LD,但是我無法顯示公司徽標。如何使用Google電子郵件事件預留模式在Google now卡中顯示公司徽標
我不確定我如何顯示圖像,如其文檔頁面here上的google示例所示。
[
{
"@context": "http://schema.org",
"@type": "EventReservation",
"reservationNumber": "OIU888888",
"reservationStatus": "http://schema.org/Confirmed",
"url": "http://example.com",
"underName": {
"@type": "Organization",
"name": "ABC, Inc."
},
"reservationFor": {
"@type": "BusinessEvent",
"name": "Invite",
"url": "http://example.com",
"performer": {
"@type": "Organization",
"name": "ABC",
"image": "http://103.56.173.67/images/footer-logo.png"
},
"startDate": "2016-11-18T19:00:00",
"location": {
"@type": "Place",
"name": "AT&T Park",
"address": {
"@type": "PostalAddress",
"streetAddress": "AT&T Park",
"addressLocality": "San Francisco",
"addressRegion": "CA",
"postalCode": "94107",
"addressCountry": "US"
}
}
},
"potentialAction":{
"@type": "ViewAction",
"target" : "<<MobileAccess>>",
"url": "http://example.com",
"name" : "<<GMJoinByComputer>>"
}
}
]
如果有人有興趣,歡迎任何幫助,我將分享更多的信息。
我已經做了一點,我認爲可以涉及[鏈接](https://stackoverflow.com/questions/22924706/google-schemas-sender-image)或這裏[鏈接](https:// stackoverflow .com/questions/22672909/will-the-gmail-offers-publisher-name-override-sender-name/22675087#22675087)。由於我正在測試這種情況,所以可能會出現這種情況,因爲我無法通過地址顯示圖像,因此我的電子郵件和個人資料都是公司之一。有什麼建議麼? 此外,我關心的是在google now card中顯示圖片,而不是在電子郵件中顯示圖片。 –