如何从 Xtream Code CMS 中查看行?
我正在使用一些 API,但无法查看行,它总是向我显示“拒绝访问”。如何允许 API 访问?我有 Xtream 代码 2.9.2 版本。我知道要使用 API,我们必须从 General Settings -> API Settings 将我们的 IP 地址导入白名单。这是 Xtream 代码 2.3.x 中的一个选项,但在以后的版本中,它们已经改变了一些东西。默认情况下,他们已禁用 API 访问。在我们拥有的当前版本的 Xtream 代码中没有这种类型的选项。有什么解决办法吗?如何在 xtream 代码 2.9.2 中允许 API 访问?
<?php
$panel_url = 'https://cms.xtream-codes.com/xxxx/'; //i am giving my cms xtream code panel link here
$username = "xxxx"; //i am giving my xtream code cms username here
$password = "xxxx"; //i am giving my xtream code cms password here
##############################################################################
$post_data = array( 'username' => $username, 'password' => $password );
$opts = array( 'http' => array(
'method' => 'POST',
'header' => 'Content-type: application/x-www-form-urlencoded',
'content' => http_build_query( $post_data ) ) );
$context = stream_context_create( $opts );
$api_result = json_decode( file_get_contents( $panel_url . "api.php?action=user&sub=info", false, $context ), true );
echo implode( ',', $api_result);
?>
拒绝访问