我想分享我的地位谷歌加。谷歌加PHP api - 插入時刻不起作用
我跟着谷歌API,但我得到未經授權的錯誤。我試圖修復它超過2天,但我不能..
我看到這個答案,我下載並測試api,仍然不適合我。
401 Unauthorized access when posting Google+ Moments with PHP Client
您可以點擊這裏,
https://code.google.com/p/google-api-php-client/source/browse/trunk/examples/moments/simple.php
在這種樹幹文件,他們仍然被調用Google_PlusMomentsService.php
我嘗試下面的代碼,但仍然沒有工作 - https://developers.google.com/+/api/latest/moments/insert
這裏是live鏈接whic H I正在測試:http://webscarlets.in/projects/babblesuite/gplus/index.php
這是代碼我使用共享狀態
$target = new Google_ItemScope();
$target->url = 'https://developers.google.com/+/plugins/snippet/examples/thing';
$moment = new Google_Moment();
$moment->type = "http://schemas.google.com/AddActivity";
$moment->target = $target;
// Execute the request
$moments->moments->insert('me', 'vault', $moment);
print '<p>Created an AddActivity moment</p>';
任何人都可以修復它吧。
感謝所有