Settings: get

Requires authorization 承認が必要

Returns a single user setting. Try it now or see an example. 単一のユーザー設定を返します。今すぐ試す、例を見てください

Request要求

HTTP requestHTTPリクエスト

GET https://www.googleapis.com/calendar/v3/users/me/settings/setting

Parametersパラメーター

Parameter nameパラメータ名 Value Description説明
Path parametersパスパラメータ
setting string The id of the user setting. ユーザー設定のID。

Authorization承認

This request requires authorization with at least one of the following scopes (read more about authentication and authorization).この要求には、以下の範囲のうちの少なくとも1つを使用した許可が必要です(認証および許可について詳しく読む)。

Scope範囲
https://www.googleapis.com/auth/calendar.readonly
https://www.googleapis.com/auth/calendar
https://www.googleapis.com/auth/calendar.settings.readonly

Request bodyリクエストボディ

Do not supply a request body with this method.このメソッドでリクエストボディを指定しないでください。

Response応答

If successful, this method returns a Settings resource in the response body.成功した場合、このメソッドはレスポンス本文にSettingsリソースを返します。

Examples

Note: The code examples available for this method do not represent all supported programming languages (see the client libraries page for a list of supported languages).注:このメソッドで使用可能なコード例は、サポートされているすべてのプログラミング言語を表しているわけではありません(サポートされている言語のリストについては、クライアントライブラリのページ参照してください)。

Java

Uses the Java client library.Javaクライアントライブラリを使用します

import com.google.api.services.calendar.Calendar;
import com.google.api.services.calendar.model.Setting;
// ...
// Initialize Calendar service with valid OAuth credentials
Calendar service = new Calendar.Builder(httpTransport, jsonFactory, credentials)
    .setApplicationName("applicationName").build();
// Retrieve a single user setting
Setting setting = service.settings().get("settingId").execute();
System.out.println(setting.getId() + ": " + setting.getValue());

Python

Uses the Python client library.Pythonクライアントライブラリを使用します

setting = service.settings().get(setting='settingId').execute()
print '%s: %s' % (setting['id'], setting['value'])

PHP

Uses the PHP client library.PHPクライアントライブラリを使用します

$settings = $service->settings->get('settingId');
echo $setting->getId() . ': ' . $setting->getValue();

Rubyルビー

Uses the Ruby client library.Rubyクライアントライブラリを使用します

result = client.get_setting('settingId')
print result.id + ": " + result.value

Try it!それを試してみてください!

Use the APIs Explorer below to call this method on live data and see the response. 以下のAPI Explorerを使用して、ライブデータに対してこのメ??ソッドを呼び出して応答を確認してください。

関連記事

スポンサーリンク

Plugin measure プラグインメジャー

ホームページ製作・web系アプリ系の製作案件募集中です。

上に戻る