嵌入Google群组成员

时间:2015-07-30 17:59:38

标签: twitter-bootstrap google-groups

我有一个引导网站,我想嵌入一个谷歌组成员列表。我只需要人们能够查看列表,以便他们可以看到该组的所有成员的联系信息。我没有找到任何可以尝试的东西,所以我没有真正尝试过任何东西。我不知道这对这个问题很重要,但这里是页面的代码:

<!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> 

谢谢!任何帮助表示赞赏

2 个答案:

答案 0 :(得分:0)

如果您想要检索Google网上论坛的所有数据,则需要阅读API Google小组。

https://developers.google.com/admin-sdk/groups-settings/get_started  您可以在Javascript上使用它来获得解决方案。

答案 1 :(得分:0)

他提到的组设置API Carter仅用于组设置,而不是成员数据。要访问Google网上论坛成员资格,您需要使用Directory API

此链接将向您展示如何向Google发出API调用,您必须将其合并到您的网页中。