當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python Tableau groups.populate_users用法及代碼示例


Tableau Server Client (TSC)groups.populate_users的用法。

用法

groups.populate_users(group_item, req_options=None)

用用戶列表填充group_item

REST API:Get Users in Group

參數

名字 說明
group_item group_item 指定要填充用戶信息的組。
req_options (可選)發送到端點的附加請求選項。

異常

Group item missing ID. Group must be retrieved from server first. :如果未指定 group_item,則會引發錯誤。

返回

沒有任何。 UserItem 對象列表添加到組 (group_item.users)。

示例

# import tableauserverclient as TSC

# server = TSC.Server('https://SERVERURL')
#
   ...

# get the group
  all_groups, pagination_item = server.groups.get()
  mygroup = all_groups[1]

# get the user information
  pagination_item = server.groups.populate_users(mygroup)


# print the names of the users
  for user in mygroup.users :
        print(user.name)






相關用法


注:本文由純淨天空篩選整理自tableau.github.io大神的英文原創作品 groups.populate_users。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。