从php中的google id获取google plus的关注者/关注者列表

时间:2017-08-23 12:13:37

标签: php google-api

我们正在开发一个我们提供Google登录的应用,我们希望实现以下功能:如果特定用户的Google连接也安装了该应用,我们需要在一个部分中显示。因此,当Google登录时,我们会获得特定用户的Google ID和Google令牌。现在我们想要从他的谷歌ID或谷歌令牌获取他的连接列表

我们已经看到了这个链接using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace ClashRoyaleHack { public partial class GemsCMD : Form { public GemsCMD() { InitializeComponent(); } private void GemsCMD_Load(object sender, EventArgs e) { timer1.Interval = 7500; timer1.Tick += new EventHandler(timer1_Tick); timer1.Start(); } private void pictureBox1_Click(object sender, EventArgs e) { } private void timer1_Tick(object sender, EventArgs e) { this.Close(); } } },但是当我们将网站制作出来时它会很有用。我们正在开发Android应用,因此我们需要从用户的Google ID或Google令牌中获取连接列表

有可能吗?如果有,请帮助我们

提前致谢!

0 个答案:

没有答案