如何允许我网站上的用户邀请 Google 通讯录中的朋友?
我正在寻找 Facebook 中存在的类似选项(http://developers.facebook.com/docs/reference/plugins/send/),但对于谷歌。
就像一个按钮,允许人们查看他们的 Gmail 联系人列表并选择其中一些并向他们发送消息。
我发现了friendconnect,它的功能类似,但又不完全一样。无论如何,friendconnect 将于 3 月 1 日停止。
有什么想法吗?
I'm looking for a similar option that exist in Facebook (http://developers.facebook.com/docs/reference/plugins/send/) But for google.
Something like a button that allows people to view a list of their gmail contacts and select some of them and send them a message.
I've found friendconnect, which does something similar, but not exactly it. In any case friendconnect will be discontinued on March 1st.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的应用程序可能应该负责发送消息,但如果您想获取用户拥有哪些联系人,可以使用一个 API (http://code.google.com/apis/contacts/)。
当然,这需要用户足够信任您的网站才能授权此数据交换。
您应该考虑使用 OAuth 请求此访问权限。这里有一些关于此的信息(http://code.google .com/apis/contacts/docs/3.0/developers_guide.html#Auth)。
Your application should probably take care of sending the messages, but if you want to get which contacts a user has, there is an API for it (http://code.google.com/apis/contacts/).
This will of course require the user to trust your site enough to authorize this data exchange.
You should consider requesting this access using OAuth. There is some information about this here (http://code.google.com/apis/contacts/docs/3.0/developers_guide.html#Auth).