如何使用python访问Azure AD组列表?

时间:2015-06-15 15:38:19

标签: python azure active-directory

我是python的新手。我找到了以下示例代码,以从https://msdn.microsoft.com/en-us/Library/Azure/Ad/Graph/api/groups-operations#BasicoperationsongroupsGetgroups

检索Azure AD组

代码是:

########### Python 3.2 #############
import http.client, urllib.request, urllib.parse, urllib.error, base64

# OAuth2 is required to access this API. For more information visit: https://msdn.microsoft.com/en-us/office/office365/howto/common-app-authentication-tasks

headers = {}

params = urllib.parse.urlencode({
# Specify values for the following required parameters
'api-version': '1.5',
})

try:
    conn = http.client.HTTPSConnection('graph.windows.net')
    #Specify values for path parameters (shown as {...}) and request body if needed
    conn.request("GET", "/myorganization/groups?%s" % params, "", headers)
    response = conn.getresponse()
    data = response.read()
    print(data)
    conn.close()
except Exception as e:
    print("[Errno {0}] {1}".format(e.errno, e.strerror))

####################################

一切都很好,但我不知道“headers = {}”的价值是什么。

我需要帮助,我花了很多时间在这上面但没有运气。

1 个答案:

答案 0 :(得分:1)

根据我的理解,您需要将Oauth授权信息写入标题,如下面的代码:

ll_

在访问Graph API之前,您需要从AD获取访问令牌。您可以将授权信息添加到标题和请求中。 关于如何获取访问令牌,我建议你可以参考这个页面: Active Directory -Authentication Scenarios