データを html/php に入れてブラウザに表示する最良の方法は何でしょうか。すべてのデータは、Invision Power ボードの Rest API からのものです。- https://invisioncommunity.com/developers/rest-api
どうすれば表示できますか? 例: すべてのユーザー名と特定のカテゴリの 5 つの最新トピックだけが必要です。
エンドポイントでは、そのうちの 1 つだけを取得します。
<?php
$communityUrl = 'https://www.example.com/ips4/';
$apiKey = 'c7a349a1629f02cd2855a58d77646f6d';
$endpoint = '/core/hello';
$endpoint = '/core/members';
$curl = curl_init( $communityUrl . 'api' . $endpoint );
curl_setopt_array( $curl, array(
CURLOPT_RETURNTRANSFER => TRUE,
CURLOPT_HTTPAUTH => CURLAUTH_BASIC,
CURLOPT_USERPWD => "{$apiKey}:"
) );
$response = curl_exec( $curl );