我有一个bootstrap网站,我想嵌入一个谷歌组成员列表。我只需要人们能够查看列表,这样他们就可以看到所有成员的联系信息。我还没有找到任何可以尝试的东西,所以我还没有真正尝试过。我不知道这对这个问题是否重要,但这里是页面的代码:
<!DOCTYPE html>
<html lang="en">
<head>
<title>Group Name</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, intial-scale-1">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootswatch/3.3.5/united/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="style.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container-fluid">
<h1>Group Name</h1>
<nav class="navbar navbar-inverse">
<div class="container-fluid">
<div class="navbar-header">
<!--<a class="navbar-brand" href="#">Group Name</a>-->
</div>
<div>
<ul class = "nav navbar-nav">
<li><a href="#"><span class="glyphicon glyphicon-home"></span></a></li>
<li><a href="calendar.html">Calendar</a></li>
<li class="active"><a href="contact.html">Contact List</a></li>
</ul>
</div>
</div>
</nav>
</div>
</body>
</html>
谢谢!感谢您的帮助
如果你想检索你的Google Group上的所有数据,你需要读取API Google Group
https://developers.google.com/admin-sdk/groups-settings/get_started
Carter提到的Groups Setting API仅用于组设置,而不用于成员数据。要访问Google Groups成员资格,您需要使用Directory API。
这个链接将向你展示如何使API调用到谷歌,从那里你必须把它合并到你的网页