“运行命令操作系统类型‘Linux’”与目标操作系统 Windows 不匹配。”使用 python 发送 API 请求以从 Powershell 脚本运行命令

发布于 2025-01-10 18:22:45 字数 903 浏览 0 评论 0原文

我正在使用 python requests 库发送 api 请求。

代码如下;

subscription_id =os.environ['AZURE_SUBSCRIPTION_ID']
source="https://management.azure.com"
token_context=access_token()
tokens=json.loads(token_context.text)
token=tokens['access_token']

headers = {'Authorization': 'Bearer ' +token, 
'Content-Type': 'application/json'}

data={
    "commandId": "RunShellScript",
    "script":["urlAdresstoScriptStoredinBlobStorage"]}

api="{}/subscriptions/{}/resourceGroups/{}/providers/Microsoft.Compute/virtualMachines/{}/runCommand?api-version=2021-11-01".format(
    source,subscription_id,vmRG,vmName)

response = requests.post(api,json=data,headers=headers)
return response

我得到的错误:

"error": {
  "code": "Conflict",
  "message": "Run command OS type 'Linux' does not match the target OS Windows."

}

错误的根源是什么以及如何解决它?

任何建议表示赞赏, 谢谢。

I am sending api request using python requests library.

The code as follows;

subscription_id =os.environ['AZURE_SUBSCRIPTION_ID']
source="https://management.azure.com"
token_context=access_token()
tokens=json.loads(token_context.text)
token=tokens['access_token']

headers = {'Authorization': 'Bearer ' +token, 
'Content-Type': 'application/json'}

data={
    "commandId": "RunShellScript",
    "script":["urlAdresstoScriptStoredinBlobStorage"]}

api="{}/subscriptions/{}/resourceGroups/{}/providers/Microsoft.Compute/virtualMachines/{}/runCommand?api-version=2021-11-01".format(
    source,subscription_id,vmRG,vmName)

response = requests.post(api,json=data,headers=headers)
return response

The Error I got:

"error": {
  "code": "Conflict",
  "message": "Run command OS type 'Linux' does not match the target OS Windows."

}

What could be the source of the error and how to solve it?

Any suggestion is appreciated,
Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文