愿你的LINE与好运同行...
项目描述
LINE
开发者邮件列表:Google Group
愿你的LINE与好运同行…
更新
2015.05.28
sendImage 和 sendImageWithURL 已修复。
发送图片
>>> contact = client.contacts[0] >>> contact.sendImage('./image.jpg')
或者使用
>>> contact = client.contacts[0] >>> contact.sendImageWithURL('https://avatars3.githubusercontent.com/u/3346407?v=3&s=460')
2015.03.31
authToken过期 问题 已解决。
自动更新authToken
$ pip install line --upgrade
您原始代码中无需更改任何内容。
手动更新authToken
$ pip install line --upgrade $ python >>> from line import LineClient, LineGroup, LineContact >>> client = LineClient("ID", "PASSWORD") >>> client.updateAuthToken() # manual update True
2014.08.08
由于LINE公司的请求,删除了一些代码。您只能使用带有authToken登录的库。