是否有原生的方式来分享链接?

是否有原生的方式来分享链接?

Ubuntu 中是否有某种 API 允许您与 Twitter、Facebook 等共享链接?

我发现了这一点:https://code.launchpad.net/~ken-vandine/+junk/gwibber-api-examples但它似乎不起作用。

谢谢

答案1

您将需要安装 gir1.2-gwibber-0.2。

这是一个基本的例子:

from gi.repository import Gwibber
s = Gwibber.Service ()
s.send_message ("This is a status update", None, None, None)

参数描述(您可能会忽略):

"""
  send_message: Posts a message
  @message: The message to post to Gwibber as a string or None
  @id: The gwibber message id or None
  @action: The action or None (reply, private)
  @account_id: The ID of the account to post from or None
"""

更详细的示例可以参见教程

相关内容