xirsys エンドポイントへの私のリクエストは次のようになります。
$.ajax({
type: "POST",
dataType: "json",
url: "https://api.xirsys.com/getIceServers",
data: {
ident: "username",
secret: "secret_api_key",
domain: "dummy_subdomain.domain.com",
application: "default",
room: "default",
secure: 1
},
});
ただし、ユーザー名、シークレット、その他の情報がxirsys
ダッシュボードに正しく表示されているように見えても、次のエラーが発生します: 'Could not validate application'
.
何か考えはありますか?ありがとうございました。
これを試してみたところ、ステータスは 200 になりましたが、残念ながら次のような応答が返されました: {"p":"/getIceServers","s":200,"d":{"iceServers":[{"url" :"stun:127.0.0.1"},{"username":"free","url":"turn:127.0.0.1?transport=udp","credential":"free"},{"username":" free","url":"turn:127.0.0.1?transport=tcp","credential":"free"}]},"e":null} これはデフォルトの応答だと思います。
私は何が間違っている可能性がありますか?