Public メソッド

クラス OAuthTwitterAPI.AccountAPI

AccountAPIクラス. [詳細]

すべてのメンバ一覧

Public メソッド

User VerifyCredentials (OAuth oauth, IDictionary< string, string > parameters)
 認証が正しく行われるかテスト。 成功時はHTTP 200とUser情報を、成功時は、401を返す。
User VerifyCredentials (OAuth oauth, bool include_entities)
 認証が正しく行われるかテスト。 成功時はHTTP 200とUser情報を、成功時は、401を返す。
User VerifyCredentials (OAuth oauth)
 認証が正しく行われるかテスト。 成功時はHTTP 200とUser情報を、成功時は、401を返す。
void VerifyCredentialsAsync (OAuth oauth, IDictionary< string, string > parameters)
 非同期による認証が正しく行われるかテスト。 成功時はHTTP 200とUser情報を、成功時は、401を返す。 戻り値は、Utility.DownloadCompletedで取得。
void VerifyCredentialsAsync (OAuth oauth, bool include_entities)
 非同期による認証が正しく行われるかテスト。 成功時はHTTP 200とUser情報を、成功時は、401を返す。 戻り値は、Utility.DownloadCompletedで取得。
void VerifyCredentialsAsync (OAuth oauth)
 非同期による認証が正しく行われるかテスト。 成功時はHTTP 200とUser情報を、成功時は、401を返す。 戻り値は、Utility.DownloadCompletedで取得。
RateLimit RateLimitStatus (OAuth oauth)
 残りAPI実行数を取得。
RateLimit RateLimitStatus ()
 残りAPI実行数を取得。 IPアドレスを対象にした値を返す。
void RateLimitStatusAsync (OAuth oauth)
 非同期による残りAPI実行数を取得。 戻り値は、Utility.DownloadCompletedで取得。
void RateLimitStatusAsync ()
 非同期による残りAPI実行数を取得。 IPアドレスを対象にした値を返す。 戻り値は、Utility.DownloadCompletedで取得。
User UpdateProfileColors (OAuth oauth, IDictionary< string, string > parameters)
 Twitter 上の自分の profile ページの色を設定する。 3文字(fff)か6文字(ffffff)で色を指定。.
User UpdateProfileColors (OAuth oauth, string background_color, string text_color, string link_color, string sidebar_fill_color, string sidebar_border_color, bool include_entities)
 Twitter 上の自分の profile ページの色を設定する。 3文字(fff)か6文字(ffffff)で色を指定。指定しない場合はnullか空文字。.
void UpdateProfileColorsAsync (OAuth oauth, IDictionary< string, string > parameters)
 非同期によるTwitter 上の自分の profile ページの色を設定する。 3文字(fff)か6文字(ffffff)で色を指定。指定しない場合はnullか空文字。 戻り値は、Utility.DownloadCompletedで取得。
void UpdateProfileColorsAsync (OAuth oauth, string background_color, string text_color, string link_color, string sidebar_fill_color, string sidebar_border_color, bool include_entities)
 非同期によるTwitter 上の自分の profile ページの色を設定する。 3文字(fff)か6文字(ffffff)で色を指定。指定しない場合はnullか空文字。 戻り値は、Utility.DownloadCompletedで取得。
User UpdateProfile (OAuth oauth, IDictionary< string, string > parameters)
 Twitter 上の自分のprofile情報を変更する。.
User UpdateProfile (OAuth oauth, string name, string url, string location, string description, bool include_entities)
 Twitter 上の自分のprofile情報を変更する。.
void UpdateProfileAsync (OAuth oauth, IDictionary< string, string > parameters)
 非同期によるTwitter 上の自分のprofile情報を変更する。 戻り値は、Utility.DownloadCompletedで取得。
void UpdateProfileAsync (OAuth oauth, string name, string url, string location, string description, bool include_entities)
 非同期によるTwitter 上の自分のprofile情報を変更する。 戻り値は、Utility.DownloadCompletedで取得。

説明

AccountAPIクラス.


メソッド

RateLimit OAuthTwitterAPI.AccountAPI.RateLimitStatus ( OAuth  oauth  ) 

残りAPI実行数を取得。

引数:
oauth 認証済みのOAuthクラス
戻り値:
RateLimitを返す
RateLimit OAuthTwitterAPI.AccountAPI.RateLimitStatus (  ) 

残りAPI実行数を取得。 IPアドレスを対象にした値を返す。

戻り値:
RateLimitを返す
void OAuthTwitterAPI.AccountAPI.RateLimitStatusAsync ( OAuth  oauth  ) 

非同期による残りAPI実行数を取得。 戻り値は、Utility.DownloadCompletedで取得。

引数:
oauth 認証済みのOAuthクラス
void OAuthTwitterAPI.AccountAPI.RateLimitStatusAsync (  ) 

非同期による残りAPI実行数を取得。 IPアドレスを対象にした値を返す。 戻り値は、Utility.DownloadCompletedで取得。

User OAuthTwitterAPI.AccountAPI.UpdateProfile ( OAuth  oauth,
string  name,
string  url,
string  location,
string  description,
bool  include_entities 
)

Twitter 上の自分のprofile情報を変更する。.

引数:
oauth 認証済みのOAuthクラス
name 名前。未設定:空文字/null
url Webページアドレス。未設定:空文字/null
location 現在地。未設定:空文字/null
description 自己紹介あるいは当該アカウントに関する説明。未設定:空文字/null
include_entities Entities情報を含めるか
戻り値:
Userを返す
User OAuthTwitterAPI.AccountAPI.UpdateProfile ( OAuth  oauth,
IDictionary< string, string >  parameters 
)

Twitter 上の自分のprofile情報を変更する。.

引数:
oauth 認証済みのOAuthクラス
parameters name:名前。
url:Webページアドレス。
location:現在地。
description:自己紹介あるいは当該アカウントに関する説明。
include_entities:true/t/1, Entities情報を含めるか
戻り値:
Userを返す
void OAuthTwitterAPI.AccountAPI.UpdateProfileAsync ( OAuth  oauth,
IDictionary< string, string >  parameters 
)

非同期によるTwitter 上の自分のprofile情報を変更する。 戻り値は、Utility.DownloadCompletedで取得。

引数:
oauth 認証済みのOAuthクラス
parameters name:名前。
url:Webページアドレス。
location:現在地。
description:自己紹介あるいは当該アカウントに関する説明。
include_entities:true/t/1, Entities情報を含めるか
void OAuthTwitterAPI.AccountAPI.UpdateProfileAsync ( OAuth  oauth,
string  name,
string  url,
string  location,
string  description,
bool  include_entities 
)

非同期によるTwitter 上の自分のprofile情報を変更する。 戻り値は、Utility.DownloadCompletedで取得。

引数:
oauth 認証済みのOAuthクラス
name 名前。未設定:空文字/null
url Webページアドレス。未設定:空文字/null
location 現在地。未設定:空文字/null
description 自己紹介あるいは当該アカウントに関する説明。未設定:空文字/null
include_entities Entities情報を含めるか
User OAuthTwitterAPI.AccountAPI.UpdateProfileColors ( OAuth  oauth,
IDictionary< string, string >  parameters 
)

Twitter 上の自分の profile ページの色を設定する。 3文字(fff)か6文字(ffffff)で色を指定。.

引数:
oauth 認証済みのOAuthクラス
parameters profile_background_color:背景の色。
profile_text_color:文字の色。
profile_link_color:リンクの色。
profile_sidebar_fill_color:サイドバーの色。
profile_sidebar_border_color:サイドバーの境界部分の色。
include_entities:true/t/1, Entities情報を含めるか
戻り値:
Userを返す
User OAuthTwitterAPI.AccountAPI.UpdateProfileColors ( OAuth  oauth,
string  background_color,
string  text_color,
string  link_color,
string  sidebar_fill_color,
string  sidebar_border_color,
bool  include_entities 
)

Twitter 上の自分の profile ページの色を設定する。 3文字(fff)か6文字(ffffff)で色を指定。指定しない場合はnullか空文字。.

引数:
oauth 認証済みのOAuthクラス
background_color 背景の色。未設定:空文字/null
text_color 文字の色。未設定:空文字/null
link_color リンクの色。未設定:空文字/null
sidebar_fill_color サイドバーの色。未設定:空文字/null
sidebar_border_color サイドバーの境界部分の色。未設定:空文字/null
include_entities Entities情報を含めるか
戻り値:
Userを返す
void OAuthTwitterAPI.AccountAPI.UpdateProfileColorsAsync ( OAuth  oauth,
string  background_color,
string  text_color,
string  link_color,
string  sidebar_fill_color,
string  sidebar_border_color,
bool  include_entities 
)

非同期によるTwitter 上の自分の profile ページの色を設定する。 3文字(fff)か6文字(ffffff)で色を指定。指定しない場合はnullか空文字。 戻り値は、Utility.DownloadCompletedで取得。

引数:
oauth 認証済みのOAuthクラス
background_color 背景の色。未設定:空文字/null
text_color 文字の色。未設定:空文字/null
link_color リンクの色。未設定:空文字/null
sidebar_fill_color サイドバーの色。未設定:空文字/null
sidebar_border_color サイドバーの境界部分の色。未設定:空文字/null
include_entities Entities情報を含めるか
void OAuthTwitterAPI.AccountAPI.UpdateProfileColorsAsync ( OAuth  oauth,
IDictionary< string, string >  parameters 
)

非同期によるTwitter 上の自分の profile ページの色を設定する。 3文字(fff)か6文字(ffffff)で色を指定。指定しない場合はnullか空文字。 戻り値は、Utility.DownloadCompletedで取得。

引数:
oauth 認証済みのOAuthクラス
parameters profile_background_color:背景の色。
profile_text_color:文字の色。
profile_link_color:リンクの色。
profile_sidebar_fill_color:サイドバーの色。
profile_sidebar_border_color:サイドバーの境界部分の色。
include_entities:true/t/1, Entities情報を含めるか
User OAuthTwitterAPI.AccountAPI.VerifyCredentials ( OAuth  oauth,
IDictionary< string, string >  parameters 
)

認証が正しく行われるかテスト。 成功時はHTTP 200とUser情報を、成功時は、401を返す。

引数:
oauth 認証済みのOAuthクラス
parameters include_entities:true/t/1, Entities情報を含めるか
戻り値:
Userを返す
User OAuthTwitterAPI.AccountAPI.VerifyCredentials ( OAuth  oauth,
bool  include_entities 
)

認証が正しく行われるかテスト。 成功時はHTTP 200とUser情報を、成功時は、401を返す。

引数:
oauth 認証済みのOAuthクラス
include_entities Entities情報を含めるか
戻り値:
Userを返す
User OAuthTwitterAPI.AccountAPI.VerifyCredentials ( OAuth  oauth  ) 

認証が正しく行われるかテスト。 成功時はHTTP 200とUser情報を、成功時は、401を返す。

引数:
oauth 認証済みのOAuthクラス
戻り値:
Userを返す
void OAuthTwitterAPI.AccountAPI.VerifyCredentialsAsync ( OAuth  oauth  ) 

非同期による認証が正しく行われるかテスト。 成功時はHTTP 200とUser情報を、成功時は、401を返す。 戻り値は、Utility.DownloadCompletedで取得。

引数:
oauth 認証済みのOAuthクラス
void OAuthTwitterAPI.AccountAPI.VerifyCredentialsAsync ( OAuth  oauth,
IDictionary< string, string >  parameters 
)

非同期による認証が正しく行われるかテスト。 成功時はHTTP 200とUser情報を、成功時は、401を返す。 戻り値は、Utility.DownloadCompletedで取得。

引数:
oauth 認証済みのOAuthクラス
parameters include_entities:true/t/1, Entities情報を含めるか
void OAuthTwitterAPI.AccountAPI.VerifyCredentialsAsync ( OAuth  oauth,
bool  include_entities 
)

非同期による認証が正しく行われるかテスト。 成功時はHTTP 200とUser情報を、成功時は、401を返す。 戻り値は、Utility.DownloadCompletedで取得。

引数:
oauth 認証済みのOAuthクラス
include_entities Entitiesを含めるか