0
チャレンジを受けた後、TLSレスポンスにどのフォーマットを含めるべきかわかりません。その情報はどこにありますか?xmpp tlsレスポンスフォーマット
が、それはのようになります、私はPHPでそれをやっていたと言う。
$nonce = "somenoncevaluehere";
$qop = "auth";
$charset = "utf-8";
$algorithm = "md5-sess";
$server = "example.com";
$user = "bob";
$pass = "somepass";
$md5Response = "realm=$server,nonce=$nonce,qop=$qop,charset=$charset,algorithm=$algorithm,xmpp,$server,$user,$pass";
を見つけました。 –