「Unity/Agora/voicechat community/token取得」の版間の差分
提供: 初心者エンジニアの簡易メモ
(→本番token取得) |
|||
行4: | 行4: | ||
#Generate temp RTC tokenを選択して、チャンネル名を入れてtokenを取得 | #Generate temp RTC tokenを選択して、チャンネル名を入れてtokenを取得 | ||
#サンプルのClientManagerTestシーンの、CanvasVideoのInspectorにあるuseTokenを、falseにして、token文字列を設置するとつながる | #サンプルのClientManagerTestシーンの、CanvasVideoのInspectorにあるuseTokenを、falseにして、token文字列を設置するとつながる | ||
+ | |||
+ | ==useTokenをtrueにすることでエラーになる== | ||
+ | ArgumentNullException: String reference not set to an instance of a String. | ||
+ | Parameter name: source | ||
+ | |||
+ | if (!serverURL.StartsWith("http")) | ||
+ | で、serverURLが、nullなので、エラーが出てるっぽい。 |
2022年12月8日 (木) 16:16時点における版
本番token取得
- https://console.agora.io/ にアクセス
- stageをliveに
- Generate temp RTC tokenを選択して、チャンネル名を入れてtokenを取得
- サンプルのClientManagerTestシーンの、CanvasVideoのInspectorにあるuseTokenを、falseにして、token文字列を設置するとつながる
useTokenをtrueにすることでエラーになる
ArgumentNullException: String reference not set to an instance of a String.
Parameter name: source
if (!serverURL.StartsWith("http"))
で、serverURLが、nullなので、エラーが出てるっぽい。