从PowerShell调用Web服务时添加“data”标记时出错

时间:2018-02-15 13:04:01

标签: python rest web-services powershell

我有以下用Python编写的Web服务请求,但需要将其转换为PowerShell才能将其部署到我们的生产环境中。

不知何故,我似乎无法使数据部分的呼叫工作(所以它不会验证我)。它在Python中运行良好,但PowerShell的语法应该是什么

import requests
import json

r = requests.post("http://ws.issworld.com/SourceSystem/rest/json/usm/login", 
                           data='''{"userName":"JohnDoe", "password":"xxxxxxxxx"}''', 
                           headers={"Content-type": "application/json"})
if(not r.ok):
    print("Couldn't login.", str(r.status_code), str(r.headers), str(r.text))
    exit(1)

欢迎提出任何指示。我是PowerShell和网络服务的新手。

0 个答案:

没有答案