2012-08-24 57 views
0

我要去跟那裏的細節對我的應用我的親寧網絡中的成員名單,但我仍然無法找出我應該爲這個寧得到所有用戶的信息

我用這個代碼做從寧API獲取照片

require_once('NingApi.php'); 

$ningApi = new NingApi('mychatterbook', 'xxxxx-e44f-47b5-ba0d-e99d98ba60be', 'xxxxx-436f-4ba0-9911-a2ac5b5a00bb','[email protected]','xxxxxx'); 


// Get the most recent photo 
$result = $ningApi->photo->fetchNRecent(); 

請幫助我的人都知道如何實現這個使用PHP ..

謝謝

回答

0

我得到它,它需要管理員accou到登錄NT獲取用戶信息,這返回2個用戶。

require_once('NingApi.php'); 

    $ningApi = new NingApi('xxxbook', 'd1216884-e44f-47b5-xxx-xxxxe', 'xxx-xx-4ba0-9911-xxxxxxx','[email protected]','xxx'); 

    try { 
     $result1 = NingApi::instance()->user->fetchNRecent(2); 

    } catch (Exception $e) { 
     echo "Error: ".$e->getMessage()."\n".$e->getTraceAsString(); 
    } 

     print_r($result1); 
相關問題