Я успешно создал сообщение с предупреждением, используя Python, но не могу заставить работать мое предупреждение PowerShell. Я просто получил стену HTML в моем ответе и не создал оповещения. Сообщение является единственным обязательным полем. Вот то, что я использую, и оно не работает
$api = "XXX"
$URI = "https://api.opsgenie.com/v2/alerts"
$head = @{"Authorization" = "GenieKey $api"}
$body = @{
message = "testing";
responders =
]@{
name = "TEAMNAMEHERE";
type = "team"
}]
} | ConvertTo-Json
$request = Invoke-RestMethod -Uri $URI -Method Post -Headers $head -ContentType "application/json" -Body $body
$request
Вот мой python код, который я сделал, и он прекрасно работает.
import requests
import json
def CreateOpsGenieAlert(api_token):
header = {
"Authorization": "GenieKey " + api_token,
"Content-Type": "application/json"
}
body = json.dumps({"message": "testing",
"responders": [
{
"name": "TEAMNAMEHERE",
"type": "team"
}
]
}
)
try:
response = requests.post("https://api.opsgenie.com/v2/alerts",
headers=header,
data=body)
jsontemp = json.loads(response.text)
print(jsontemp)
if response.status_code == 202:
return response
except:
print('error')
print(response)
CreateOpsGenieAlert(api_token="XXX")
РЕДАКТИРОВАТЬ: Итак, я понял, что это как-то связано с моим разделом "респонденты". Это как-то связано с [] ... но я не смог понять, что именно. Если я уберу их, это не сработает. Если я поверну первый, это не сработает. Я могу получить предупреждение об успешном создании, но получаю следующую ошибку:
] : The term ']' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
At \\file\Tech\user\powershell scripts\.not working\OpsGenieAlert.ps1:7 char:17
+ ]@{
+ ~
+ CategoryInfo : ObjectNotFound: (]:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException