Polymer google-signin 元素获取 Cannot read 属性 'currentUser' of null
Polymer google-signin element gets Cannot read property 'currentUser' of null
我正在尝试让 google-signin
元素正常工作,只需将其添加到我的 HTML:
<google-signin clientId="[my-client-id]" scopes="https://www.googleapis.com/auth/drive"></google-signin>
登录按钮出现在页面上,但是当我点击它时,出现错误:
Cannot read property 'currentUser' of null
我只是在 localhost
上对其进行测试,所以我不确定这是否是客户端 ID 域问题,或者我是否需要在 JS 中做更多的事情来处理 [=26] =] 对象?
有什么想法吗?非常感谢!
尝试 client-id
而不是 clientId
。
<google-signin client-id="[my-client-id]" scopes="https://www.googleapis.com/auth/drive"></google-signin>
google-signin documentation for this attribute doesn't match with the actual code.
我正在尝试让 google-signin
元素正常工作,只需将其添加到我的 HTML:
<google-signin clientId="[my-client-id]" scopes="https://www.googleapis.com/auth/drive"></google-signin>
登录按钮出现在页面上,但是当我点击它时,出现错误:
Cannot read property 'currentUser' of null
我只是在 localhost
上对其进行测试,所以我不确定这是否是客户端 ID 域问题,或者我是否需要在 JS 中做更多的事情来处理 [=26] =] 对象?
有什么想法吗?非常感谢!
尝试 client-id
而不是 clientId
。
<google-signin client-id="[my-client-id]" scopes="https://www.googleapis.com/auth/drive"></google-signin>
google-signin documentation for this attribute doesn't match with the actual code.