埋め込み型ツイートでは、data-* 属性やJavaScript ファクトリー機能を使ったカスタマイズをサポートしています。 このリファレンスドキュメントでは、全ての形式で使用されるパラメータについて説明します。
Reference the oEmbed API to set these parameters as part of an HTML response for a Tweet ID or URL.
Embedded Tweet parameter referenceAn Embedded Tweet supports customization in data-* attributes and JavaScript factory functions. This reference document describes parameters used in all formats. Reference the oEmbed API to set these parameters as part of an HTML response for a Tweet ID or URL. |
希望するツイートの数値型ID。
サンプル値: 20
hidden
を設定した場合、ツイート内のリンクは写真や動画やリンクプレビューに拡張されません。
サンプル値: hidden
none
を設定した場合、引用したツイートが別のツイートへのリプライだった場合でも、引用したツイートのみが表示されます。
Example Value: none
dark
を設定した場合、暗めの背景上に明るめのテキストツイートを表示します。
サンプル値: dark
ツイートのリンクの色を16進数カラーの値で調整します。
注意: JavaScript ファクトリー機能の使用時には、linkColor
パラメータを使う必要があります。
サンプル値: #55acee
描写するツイートのピクセル単位の最大横幅。この値は 250 ピクセルから 550 ピクセルの間にしてください。
サンプル値: 325
ツイートを、そのコンテナ内で left
, right
, center
の位置に配置します。
通常はテキストやその他コンテンツがそのツイートを囲む形になるよう設定します。
サンプル値: right
Parameters
id
required
The numerical ID of the desired Tweet. Example Values:
cards
optional
When set to Example Value:
conversation
optional
When set to Example Value:
lang
optional
A supported Twitter language code. Loads text components in the specified language. Note: does not affect the text of the cited Tweet. Example Value:
dnt
optional
When set to Example Value:
theme
optional
When set to Example Value:
link-color
optional
Adjust the color of Tweet links with a hexadecimal color value. Note: JavaScript factory function uses should use the Example Value:
width
optional
The maximum width of the rendered Tweet in whole pixels. This value should be between 250 and 550 pixels. Example Value:
align
optional
Float the Tweet Example Value: |
just setting up my twttr
— Jack Dorsey (@jack) March 21, 2006
<blockquote class="twitter-tweet" data-link-color="#55acee" lang="es"> <p lang="en">just setting up my twttr</p> — Jack Dorsey (@jack) <a href="https://twitter.com/jack/status/20"> marzo 21, 2006 </a> </blockquote>
HTML example
<blockquote class="twitter-tweet" data-link-color="#55acee" lang="es"> <p lang="en">just setting up my twttr</p> — Jack Dorsey (@jack) <a href="https://twitter.com/jack/status/20"> marzo 21, 2006 </a> </blockquote> |
注意: 数値型 Tweet ID は文字列として渡す必要があります。
twttr.widgets.createTweet( "20", document.getElementById("tweet-container"), { linkColor: "#55acee" } );
JavaScript factory exampleNote: the numeric Tweet ID should be passed as a string. twttr.widgets.createTweet( "20", document.getElementById("tweet-container"), { linkColor: "#55acee" } ); |