web-dev-qa-db-ja.com

リンクを共有するネイティブな方法はありますか?

Twitter、Facebookなどとリンクを共有できるUbuntuで利用可能な何らかのAPIはありますか?

私はこれを見つけました: https://code.launchpad.net/~ken-vandine/+junk/gwibber-api-examples しかし、それは機能していないようです。

ありがとう

2
consindo

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
"""

さらに詳細な例については、 チュートリアル を参照してください。

2
Ken VanDine