我想在响应卡中显示与用户的社交链接的可点击图像,在AWS控制台中,这些图像正在显示(尽管单击不起作用),但是当bot与网站集成时,这些图像却无法显示。
我正在将python 2.7用于Lambda代码。
response = {
'sessionAttributes': session_attributes,
'dialogAction': {
'type': 'Close',
'fulfillmentState': fulfillment_state,
'message': message,
'responseCard': {
'version': '0',
'contentType': 'application/vnd.amazonaws.card.generic',
'genericAttachments': [
{
'title': 'Follow us on Twitter',
'subTitle': 'Twitter',
'attachmentLinkUrl': 'https:someurl1',
'imageUrl': 'someimage1.png'
},
{
'title': 'Follow us on Facebook',
'subTitle': 'Facebook',
'attachmentLinkUrl': 'https:someurl',
'imageUrl': 'someimage.png'
},
{
'title': 'Follow us on Medium',
'subTitle': 'Medium',
'attachmentLinkUrl': 'https:someurl',
'imageUrl': 'someimage.png'
},
{
'title': 'Follow us on Youtube',
'subTitle': 'Youtube',
'attachmentLinkUrl': 'https:someurl',
'imageUrl': 'someimage.png'
}
}
}