このページでは、Speech-to-Text API の Cloud クライアント ライブラリの利用方法を説明します。以前の Google API のクライアント ライブラリを含め、Cloud APIs のライブラリの詳細については、クライアント ライブラリの説明をご覧ください。
クライアント ライブラリをインストールする
C#
詳細については、C# 開発環境の設定をご覧ください。
Visual Studio 2017 以降を使用している場合は、Nuget パッケージ マネージャーのウィンドウを開き、次のように入力します。Install-Package Google.Apis
.NET Core コマンドライン インターフェースを使用して依存関係をインストールしている場合は、次のコマンドを実行します。
dotnet add package Google.Apis
Go
詳細については、Go 開発環境の設定をご覧ください。
go get cloud.google.com/go/speech/apiv1
Java
詳細については、Java 開発環境の設定をご覧ください。
If you are using Maven, add
the following to your pom.xml
file. For more information about
BOMs, see The Google Cloud Platform Libraries BOM.
If you are using Gradle, add the following to your dependencies:
If you are using sbt, add the following to your dependencies:
If you're using Visual Studio Code, IntelliJ, or Eclipse, you can add client libraries to your project using the following IDE plugins:
The plugins provide additional functionality, such as key management for service accounts. Refer to each plugin's documentation for details.
Node.js
詳細については、Node.js 開発環境の設定をご覧ください。
npm install --save @google-cloud/speech
PHP
詳細については、Google Cloud での PHP の使用をご覧ください。
composer require google/apiclient
Python
詳細については、Python 開発環境の設定をご覧ください。
pip install --upgrade google-cloud-speech
Ruby
詳細については、Ruby 開発環境の設定をご覧ください。
gem install google-api-client
認証を設定する
クライアント ライブラリを使用する場合は、アプリケーションのデフォルト認証情報(ADC)を使用して認証を行います。ADC の設定については、アプリケーションのデフォルト認証情報に認証情報を提供するをご覧ください。クライアント ライブラリで ADC を使用する方法については、クライアント ライブラリを使用して認証するをご覧ください。
クライアント ライブラリの使用
次の例は、クライアント ライブラリの使用方法を示しています。
Go
Java
Node.js
Python