0
我使用Codeigniter庫(https://github.com/samwierema/google-plus-api-codeigniter),我可以獲取用戶的登錄憑據並將GooglePlusID和所有訪問令牌存儲在數據庫中。Google+ API - 使用PHP發佈片刻
我的問題是,我很難在Google+上「發佈一段時間」,我仔細查看了代碼,並懷疑它很舊,可能沒有選擇。
我目前正在
$google_plus_id = '';
$this->googleplus->people->insert($google_plus_id, 'vault', 'This is a test from my platform');
我有看「THIRD_PARTY」文件夾,似乎無法找到瞬間投寄一提。
我想知道是否有人使用過圖書館,並可能指出我正確的方向得到這張貼/工作。
感謝
你有一些問題與您的代碼。假設圖書館仍然有效。 '$ this-> googleplus-> people'用於與人互動,您應該使用'$ this-> googleplus-> moments'。 'me'是'$ google_plus_id'唯一支持的值。 [documentation specified](https://developers.google.com/+/api/latest/moments/insert)您應該傳遞一個具有多個值的對象,而不是一個字符串。 – abraham 2014-09-03 17:04:35