5

Microsoft Project Oxford 音声認識 API をテストしたいのですが、client_id を取得する場所や方法がわかりません。

検索 API をテストしようとしています。まず、サービスを使用するためのトークンを取得しようとしています。

curl -d -i "https://oxford-speech.cloudapp.net/token/issueToken?grant_type=client_credentials&client_id=123&client_secret=456scope=https%3A%2F%2Fspeech.platform.bing.com"
{ "statusCode": 401, "message": "Access denied due to invalid subscription key. Make sure you are subscribed to an API you are trying to call and provide the right key." }

主キーと副キーがありますが、client_id が見つかりません。誰か助けてくれませんか?

4

3 に答える 3

5

こちらをご覧ください

// 注: http://www.projectoxford.aiでサインアップして、サブスクリプション キーを取得します。Azure Marketplace から Speech API を検索します。
// サブスクリプション キーを以下のクライアント シークレットとして使用します。Authentication auth = new Authentication("短い ClientId を用意してください", "Client Secret");

詳細な手順はこちらhttp://www.projectoxford.ai/doc/general/subscription-key-mgmt

于 2015-05-08T03:59:18.660 に答える