0

ドキュメントから参照を得た残りのAPIを試しましたが、どういうわけかうまくいかないので、可能であれば誰か助けてください。

以下のコードで change_password api を試しました:

$url='192.168.1.72:5280/api/change_password/';
$login="key";
$password='secret';
$request=null;
$info=array("key"=> "secret",
                "args"=>array("87999","192.168.1.72:5280","test"),
            );
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($info));
$output=curl_exec($ch);
curl_close($ch);
print_r($output);
exit;

私は以下のような応答を得ました:

{"status":"error","code":31,"message":"Command need to be run with admin priviledge."}

ドキュメントのリンク: https://docs.ejabberd.im/admin/api/

参考までに:それが役立つ場合、私は16.08.28バージョンを使用しています

4

0 に答える 0