来自 python 的 linkedin:无法发送多条消息
我想使用 python 向 linkedin 中的多个朋友发送消息。
来自文档:http://code.google.com/p/python-linkedin/
使用这个可以发送那个。
result = api.SendMessage("This is a subject", "This is the body", ["ID1", "ID2", "ID3"])
但我无法使用它。谁能告诉我ID1是什么? ID2? ETC?
I want to send messages to multiple friends in linkedin using python.
from docs : http://code.google.com/p/python-linkedin/
Using this one can send that.
result = api.SendMessage("This is a subject", "This is the body", ["ID1", "ID2", "ID3"])
But I am not able to use that. Can anyyone tell me what is ID1? ID2? etc?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您只能向一级关系发送消息。因此,为了获得有效的 ID,我猜代码如下所示:
You can only message first degree connections. So, to get valid ids, I'm guessing the code looks something like:
它们是您想要向其发送消息的人的 ID。尝试使用
send_yourself = True
来代替['ID1', 'ID2', 'ID3']
来确保您正在做的事情有效。所以它将是:They are the ID's for the people you wish to send a message to. instead of
['ID1', 'ID2', 'ID3']
, try usingsend_yourself = True
to make sure what you are doing works. So it will be: