当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python ArcGIS UserManager.send_notification用法及代码示例


本文简要介绍 python 语言中 arcgis.gis.UserManager.send_notification 的用法。

用法:

send_notification(users, subject, message, type='builtin', client_id=None)

返回:

指示成功 (True) 或失败 (False) 的布尔值

send_notification 方法为用户列表创建用户通知。

Parameter

Description

users

必填清单。要向其发送通知的字符串或用户对象列表。

subject

必需的字符串。通知主题行。

message

必需的字符串。通知内容。这应该是纯文本。

type

可选字符串。可以通过多种方式发送通知。这些包括:

  • builtin - The enterprise built-in system

  • push - The push notification to send a message to

  • email - a notification sent to the user’s email account

client_id

可选字符串。推送通知的客户端 ID。

例子:

# Usage Example

>>> gis.users.send_notification([user1,user1234,user123, user1234], "testing notification system",
                                "This was a test of the sending notification property")

相关用法


注:本文由纯净天空筛选整理自arcgis.com大神的英文原创作品 arcgis.gis.UserManager.send_notification。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。