微信发送淘宝链接出现问题
woxiangxuejishu opened this issue · 1 comments
woxiangxuejishu commented
淘口令不完整,淘宝读不出来。求解
lisen886 commented
1、是因为文字截断问题,你可以将文字全部发送到微信上,不做文字截断
coupon/tb.py 47行和61行
itchat.send(f'''({text[start_index: 13 + start_index]})''', group_name)
改成
itchat.send(f'''({text})''', group_name)
2、生成淘口令的逻辑里有一个地方需要修改
coupon/tb.py 62行
text = f'''{tb_client.taobao_tbk_tpwd_create(title, coupon_share_url)}'''
改成
text = f'''{tb_client.taobao_tbk_tpwd_create(title, click_url)}'''