facebook twitter hatena line email

「Unity/Agora/voicechat community/token取得」の版間の差分

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
(useTokenをtrueにすることでエラーになる)
行13: 行13:
 
GetRtcToken()内の以下場所で、serverURLが、nullなので、エラーが出てるっぽい。
 
GetRtcToken()内の以下場所で、serverURLが、nullなので、エラーが出てるっぽい。
 
  if (!serverURL.StartsWith("http"))
 
  if (!serverURL.StartsWith("http"))
 +
 +
==serverURLを入れる必要がありそう==
 +
    ///    The helper class gets the token from a server endpoint conformed to
 +
    /// format like this:
 +
    ///  http://localhost:8080/rte/testing/publisher/uid/1234/?3600
 +
    /// See the GitHub project for compatible server code in GoLang:
 +
    ///  https://github.com/AgoraIO-Community/agora-token-service

2022年12月8日 (木) 17:14時点における版

本番token取得

  1. https://console.agora.io/ にアクセス
  2. stageをliveに
  3. Generate temp RTC tokenを選択して、チャンネル名を入れてtokenを取得
  4. サンプルのClientManagerTestシーンの、CanvasVideoのInspectorにあるuseTokenを、falseにして、token文字列を設置するとつながる

useTokenをtrueにすることでエラーになる

ArgumentNullException: String reference not set to an instance of a String.
Parameter name: source

GetRtcToken()内の以下場所で、serverURLが、nullなので、エラーが出てるっぽい。

if (!serverURL.StartsWith("http"))

serverURLを入れる必要がありそう

   ///    The helper class gets the token from a server endpoint conformed to
   /// format like this:
   ///   http://localhost:8080/rte/testing/publisher/uid/1234/?3600
   /// See the GitHub project for compatible server code in GoLang:
   ///   https://github.com/AgoraIO-Community/agora-token-service