1
從github下載PHP包裝器(https://github.com/laposta/laposta-api-php)後,我在WordPress上運行下面的代碼時得到一個空白響應。Laposta API - 獲取訂閱者合計
API在PHP文件中使用時返回正確的數據。
我敢肯定,這是我的一個簡單的錯誤,任何人都可以給我一個指針?我使用了API文檔和提供的示例,所以不太確定爲什麼這不能正常工作。
require_once(get_stylesheet_directory_uri() . '/assets/laposta/lib/Laposta.php');
Laposta::setApiKey("MY_API_KEY");
Laposta::setHttpsDisableVerifyPeer(true);
$list = new Laposta_List();
$result = $list->get("MY_LIST_ID");
$members = $result['list']['members']['active'];