Curator Broadcaster API は、Curatorが作成したオンエアーで表示するための(もしくはその他デジタル表示用の)ストリームを放送局に提供する非公開APIです。
このCurator Broadcaster API へアクセスするには特別なアクセス権が必要で、TV放送をする場合にのみ使用できます。アクセスの申請をする場合はcurator.twitter.comからお願いします。
この概要のページでは、必要な資格情報の作成、アクセステスト、原則とリソースについて説明し、よく使われるリクエストをいくつか例示しています。
詳細情報については、Curator プロダクト内の FAQs ページ を参照してください。
Curator API OverviewThe Curator Broadcaster API is a private API that provides broadcasters their Curator-created streams for on-air graphics systems (or other digital displays). The Curator Broadcaster API requires special permission to access and is only available for TV broadcast use cases. To request access please visit curator.twitter.com. This overview page will walk you through the process of creating the necessary credentials, testing your access, reviewing the principles and resources, and provide several of the most common use case requests. Please also checkout the FAQs page inside of the Curator product for additional information. |
Curator Broadcaster APIを使うには、以下のことをしておく必要があります:
Getting StartedTo get started with the Curator Broadcaster API, you will need to do the following:
|
Creating Accounts |
はじめに twitter.comへ行き、アカウントを作成します。アプリケーション専用の新しいアカウントを作成することを推奨します。 Eメールアドレスには、通常は個人アカウントを設定せずにチーム名を設定するのがベストです (パスワードリセットやアカウント管理目的のために)。 パスワードは複雑に生成されたものを設定してください。 アカウントを取得した後は、Eメール通知を無効にする、アカウントを非公開にする、タグ機能を無効化する、パスワードのリセットには個人情報が必要なようにする、といったいくつかの初期設定を行うと良いでしょう。
あなたのTwitter アカウントがCurator アカウントを使用するためのホワイトリストに登録されていなければ、次の項目には進めません。 お使いのプラットウォーム関連の担当者に問い合わせてください。
Twitter AccountTo begin, go to twitter.com and create an account. We recommend creating a new account that will be used for your application. The email address is usually best set to a team alias and not to an individual account (for password reset and account management purposes). Please set a complex generated password. Once you have created your account, you may want to adjust a couple initial settings- disabling email notifications, marking the account private, disabling tagging, and requiring personal information to reset the password. You will not be able to continue to the next section until your Twitter Account has been whitelisted to use the Curator product. Please contact your Platform Relations representative. |
Curatorにログインしてストリームを作成します。ストリームが作成されたら、左側にあるOutputs
をクリックしてください。
左の枠にあるURLのいずれかをコピーし、全体が見えるようにどこかに貼り付けてください。
streams/
以降に記載されている、ストリームIDとauth
トークンを保存します。
Create Curator Stream & Get ID of the StreamLogin to Curator and create a Stream. Once your stream is created, click on |
全てのAPIの呼び出しでは、認証のための auth
パラメータが必要です。さらに、あなたを識別するために使われるストリームIDも必要です。
Making API CallsAll API calls require an |
Curator Broadcaster API は二つのメインリソースを持っています: /streams
と/collections
です。
現在、以下のリソースが使用可能です:
trendline
エンドポイントは、リクエストした粒度に基づいて期間を制限されます:
metrics
エンドポイントとcompare
エンドポイントとcompare_to_targe
エンドポイントでは、start_time
パラメータを切り捨てに使い、end_time
パラメータを切り上げに使って上記規約で認められている最少粒度にします。
Resources in the Curator Broadcaster APIThe Curator Broadcaster API has two main resources:
The following resources are currently available:
The
The |
以下がリクエスト例になります。
curl
を使ってテストする場合は、次のコードを使用できます: curl https://curator.twitter.com/broadcast/1/streams/<stream_id>/?auth=<auth_token>&limit=
Example RequestsThe following are example requests. To test them with |
指定したストリームの最新のツイート。
https://curator.twitter.com/broadcast/1/streams/<stream_id>/content?auth=<auth_token>&limit=25
Latest Tweet ContentThe latest Tweets in the given stream.
|
指定したコレクションの最新のツイート。
https://curator.twitter.com/broadcast/1/collections/<collection_id>/content?auth=<auth_token>&limit=25
Latest Collection TweetsThe latest Tweets in the given collection.
|