Google plus api"资源对象没有属性' insert' "

时间:2014-10-09 12:52:26

标签: python google-api-python-client google-domain-api google-plus-domains

按照Google开发者here

上的说明进行操作

当我尝试添加活动(帖子)时,我得到了一个python错误

"Resource object has no attribute 'insert' "

但是当我查看here时(在api文档中), activities()

下显然有 insert 方法

这是问题代码

result = service.activities().insert(
                userId=user_id,
                body={
                   'object': {
                        #'orginalContent': content 
                    },
                    'access': {
                        'items': [{
                            'type': 'domain'
                        }],
                        'domainRestricted': True
                    }
                }).execute()

我之前处理过所有身份验证的内容,上面的代码来自google的示例 而且我有适当的范围,我不能为我的生活找出问题......

任何人都有这方面的经验??

或是否有人能够成功运行谷歌的示例代码?知道谢谢会有很多帮助

*也忘了提到这是一个django视图,如果这有所作为

0 个答案:

没有答案