大家好!
在图文消息跳转小程序时出现一个问题。根据官方文档如下:
按照文档我的代码如下:
def upload_art():
articles = [{
"title": "景点快报",
"thumb_media_id": "39LvEN4BO0c7H1ODmJsu4GqAYVUNeRNN4lvZ-br0Fek",
"author": "AUTHOR",
"digest": "DIGEST",
"show_cover_pic": 1,
"content": "具体内容1",
"content_source_url": "http://www.baidu.com"
},
{
"title": "景点快报2",
"thumb_media_id": "39LvEN4BO0c7H1ODmJsu4GqAYVUNeRNN4lvZ-br0Fek",
"author": "AUTHOR",
"digest": "DIGESTXXXXXXX",
"show_cover_pic": 1,
"content": "<p><a data-miniprogram-appid='wx89a6e95a00743d66' data-miniprogram-path='pages/index' href=''><img src='http://img02.tooopen.com/images/20151208/tooopen_sy_150935272638.jpg' alt='img1' data-width='100%' data-ratio='1.2'></a></p>",
"content_source_url": "http://www.baidu.com"
},
{
"title": "美食快报1",
"thumb_media_id": "39LvEN4BO0c7H1ODmJsu4GqAYVUNeRNN4lvZ-br0Fek",
"author": "AUTHOR",
"digest": "DIGEST美食快报",
"show_cover_pic": 1,
"content": "具体内容1YYYYYY",
"content_source_url": "http://www.baidu.com"
}
]
print(articles)
result=gzhclient.add_news(articles)
print("result:",result)
result_media_id=result['media_id']
print(result_media_id)
return result_media_id
上传文件没问题,发送消息没问题,但是手机打开消息里没有http://img02.tooopen.com/images/20151208/tooopen_sy_150935272638.jpg的图片,也就没法跳转小程序。以上有什么错吗?为什么图片没有显示出来?
"content"内容换成纯文字的格式:
<p><a data-miniprogram-appid="wx123123123" data-miniprogram-path="pages/index" href="">点击文字跳转小程序</a></p>
也不行。
公众号关联了小程序没有
谢谢!关联了。 是消息正文里图形显示不出来。如果在web控制台编辑发送是没问题的,可以跳转到小程序。
我怀疑的是,这个html的内容能直接放到"content"里吗?是不是要转换格式?