0

我正在尝试在用户的 Google+ 流中发帖,并且正在使用 google-api PHP 客户端进行尝试。到目前为止,我已经能够使用最新的 google-api PHP 客户端和示例脚本配置测试环境(有关更多信息,请参阅使用 PHP 客户端发布 Google+ Moments 时的 401 Unauthorized access)。它看起来像是在发布,因为它返回了一个带有答案的数组,但用户流中没有显示任何内容。

答案数组是:

Array ( 
    [kind] => plus#moment 
    [type] => http://schemas.google.com/AddActivity 
    [target] => Array ( 
        [kind] => plus#itemScope 
        [url] => https://developers.google.com/+/plugins/snippet/examples/thing 
    ) 
    [result] => Array ( 
        [kind] => plus#itemScope 
    ) 
    [id] => xxxxxxxxx 
) 

这看起来是正确的。有谁知道为什么会发生这种情况以及如何解决?谢谢!

4

1 回答 1

4

应用活动不会呈现在用户的信息流中,而是呈现在 Google+ 的应用活动部分中:

https://plus.google.com/apps/

为防止信息流中出现垃圾信息,用户必须明确分享到他们在 Google+ 中的信息流。您可以使用SharesInteractive Posts来做到这一点。

于 2013-04-05T14:53:57.017 回答