A Tweet Button supports pre-populating share text, hashtags, and a Twitter account reference. Associate related Twitter accounts to drive followers.
Tweet Button Parameter ReferenceA Tweet Button supports pre-populating share text, hashtags, and a Twitter account reference. Associate related Twitter accounts to drive followers. |
(もし当てはまれば)あなたのアカウントのツイートのような、親ツイートのステータスIDの文字列。
サンプル値: 471716611724812288
ツイート書き込みボックスに強調されて事前に埋め込まれるテキスト。
サンプル値: custom share text
ツイートに含まれるURL。
サンプル値: https://dev.twitter.com/web/tweet-button
デフォルトのツイート文に追加されるハッシュタグのコンマ区切り一覧。
サンプル値: example,demo
Twitter ユーザー名に、ツイート元の属性を付与します。
@usernameさんから
という形式で Tweet 文に追加表示されます。この Twitter アカウントは、フォロー推奨アカウントの一覧に表示されます。
サンプル値: twitterdev
拡散するURLコンテンツに関連するアカウントのコンマ区切り一覧。
含まれているTwitter アカウントは、フォロー推奨アカウントの一覧に表示されます。
サンプル値: twitterapi,twitter
Tweet content parameters
in_reply_to
optional
Status ID string of a parent Tweet such as a Tweet from your account (if applicable). Example Value:
text
optional
Pre-populated text highlighted in the Tweet composer. Example Value:
url
optional
URL included with the Tweet. Example Value:
hashtags
optional
A comma-separated list of hashtags to be appended to default Tweet text. Example Value:
via
optional
Attribute the source of a Tweet to a Twitter username. Appears appended to Tweet text as Example Value:
related
optional
A comma-separated list of accounts related to the content of the shared URI. An included Twitter account may appear in a list of recommended accounts to follow. Example Value: |
表示するボタンのサイズ、ツイートカウントの表示、ボタンの配置、その他色々をカスタマイズします。
These visual parameters do not apply to Web Intents, which are styled separately by implementing sites.
large
を設定し場合は、大きめのバージョンのボタンを表示します。 iframeの場合はl
を設定します。
サンプル値: large
ボタンを生成されたiframeのleft
もしくはright
に配置します。
既定動作: ツイートボタンは、ウィジットの言語に合わせた最適な位置オプションを選択します。
サンプル値: right
none
を設定した場合、指定したURLを含むツイートの数は表示されません。
vertical
を設定した場合は、指定したURLを含むツイートの数はボタンの上に表示されます。
サンプル値: none
集めたツイートカウントを表示するため、明示的に canonical URI を定義します。
サンプル値: https://dev.twitter.com/
Button display parametersCustomize your displayed Tweet Button size, Tweet count display, button alignment, and more. These visual parameters do not apply to Web Intents, which are styled separately by implementing sites.
size
optional
When set to Example Value:
align
optional
Force align the button to the Default behavior: the Tweet button chooses the best alignment option for the widget’s language. Example Value:
count
optional
When set to When set to Example Value:
counturl
optional
Explicitly define a canonical URI for aggregated Tweet count display. Example Value:
lang
optional
A supported Twitter language code. Loads text components in the specified language. Example Value:
dnt
optional
When set to Example Value: |
<a class="twitter-share-button" href="https://twitter.com/share" data-size="large" data-url="https://dev.twitter.com/web/tweet-button" data-count-url="https://dev.twitter.com/web/tweet-button" data-via="twitterdev" data-related="twitterapi,twitter" data-hashtags="example,demo" data-text="custom share text"> Tweet </a>
<iframe src="https://platform.twitter.com/widgets/tweet_button.html?size=l&url=https%3A%2F%2Fdev.twitter.com%2Fweb%2Ftweet-button&via=twitterdev&related=twitterapi%2Ctwitter&text=custom%20share%20text&hashtags=example%2Cdemo" width="140" height="28" title="Twitter Tweet Button" style="border: 0; overflow: hidden;"> </iframe>
twttr.widgets.createShareButton( "https:\/\/dev.twitter.com\/web\/tweet-button", document.getElementById("tweet-container"), { size: "large", via: "twitterdev", related: "twitterapi,twitter", text: "custom share text", hashtags: "example,demo" } );
<a href="https://twitter.com/share? url=https%3A%2F%2Fdev.twitter.com%2Fweb%2Ftweet-button& via=twitterdev& related=twitterapi%2Ctwitter& hashtags=example%2Cdemo& text=custom%20share%20text"> Tweet </a>
HTML data-* example<a class="twitter-share-button" href="https://twitter.com/share" data-size="large" data-url="https://dev.twitter.com/web/tweet-button" data-count-url="https://dev.twitter.com/web/tweet-button" data-via="twitterdev" data-related="twitterapi,twitter" data-hashtags="example,demo" data-text="custom share text"> Tweet </a> Iframe example<iframe src="https://platform.twitter.com/widgets/tweet_button.html?size=l&url=https%3A%2F%2Fdev.twitter.com%2Fweb%2Ftweet-button&via=twitterdev&related=twitterapi%2Ctwitter&text=custom%20share%20text&hashtags=example%2Cdemo" width="140" height="28" title="Twitter Tweet Button" style="border: 0; overflow: hidden;"> </iframe> JavaScript factory exampletwttr.widgets.createShareButton( "https:\/\/dev.twitter.com\/web\/tweet-button", document.getElementById("tweet-container"), { size: "large", via: "twitterdev", related: "twitterapi,twitter", text: "custom share text", hashtags: "example,demo" } ); Web Intent example<a href="https://twitter.com/share? url=https%3A%2F%2Fdev.twitter.com%2Fweb%2Ftweet-button& via=twitterdev& related=twitterapi%2Ctwitter& hashtags=example%2Cdemo& text=custom%20share%20text"> Tweet </a> |