我正在寻找一种方法来添加评论作为另一个用户。 REST API没有这种方式 但SOAP来自https://community.atlassian.com/t5/Answers-Developer-Questions/Jira-REST-API-create-a-comment-as-another-user/qaq-p/481139
幸运的是,我的团队仍然没有升级到7.0,似乎没有计划升级,因为我们在某些流程中使用SOAP。
from suds.client import Client
client = Client('https://example.com/jira/rpc/soap/jirasoapservice-v2?wsdl')
auth = client.service.login('jira-admin', 'jira-admin123')
client.service.addComment(auth, 'ISSUE-123', {'author': 'sample_user', 'body': 'TEST'})
用户' jira-admin'属于全球集团' jira-administrator'但是这段代码根本不起作用。代码或用户权限有问题吗?
任何建议都表示赞赏。