2009-07-01 52 views
1

我想知道是否有一個很好的「託管」解決方案來管理朋友邀請(ala LinkedIn)我知道AddThis,但除非我錯誤,看起來適合分享特定文章/內容。朋友邀請插件 - 託管或PHP

我正在尋找可以整合到註冊過程中的東西,只需最少的額外編碼工作。只需要從Gmail,FB,Hotmail等簡單的抓取聯繫人。

也許最好的辦法是一個PHP插件。任何人都可以推薦最好的那個嗎?免費將是最好的。

回答

1

有賣solutions,或者你可以寫點東西。

require_once("libgmailer.php"); 

$my_timezone = 0; 
$gmailer = new GMailer(); 
if ($gmailer->created) { 
$gmailer->setLoginInfo($gmail_username, $gmail_pwd, $my_timezone); 
//$gmailer->setProxy("proxy.company.com"); 
if ($gmailer->connect()) { 
    $gmailer->fetchBox(GM_CONTACT, "all", ""); 
    $snapshot = $gmailer->getSnapshot(GM_CONTACT); 
    var_dump($snapshot->contacts); 
    var_dump($snapshot->contacts_total); 
} else { 
    die("Fail to connect because: ".$gmailer->lastActionStatus()); 
} 
} else { 
die("Failed to create GMailer because: ".$gmailer->lastActionStatus()); 
}