如何获得此宝石的API?我目前可以通过
获取用户的姓名和电子邮件google_client.execute!(:api_method => GoogleLogic.get_google_oauth2.userinfo.get).data.name
google_client.execute!(:api_method => GoogleLogic.get_google_oauth2.userinfo.get).data.email
但是这些方法在这个宝石的官方页面中没有写到
答案 0 :(得分:4)
由于ruby客户端是动态生成的,因此可能没有API文档。您可以在此处查看API定义:
https://www.googleapis.com/discovery/v1/apis/oauth2/v1/rest
查看库中生成的方法/属性可能很有用。
答案 1 :(得分:0)
不确定这是否相关,但我发现github页面上的文档非常有用:
https://github.com/google/google-api-ruby-client
以及样本:
https://github.com/google/google-api-ruby-client-samples
最后,谷歌的开发者控制台非常有用。