mirror of
https://github.com/binwiederhier/ntfy.git
synced 2024-11-23 03:43:47 +01:00
Updated powershell docs to correct syntax, fixed my goofy typos
This commit is contained in:
parent
eb841604c7
commit
ae3715222f
1 changed files with 2 additions and 2 deletions
|
@ -1746,7 +1746,7 @@ And the same example using [JSON publishing](#publish-as-json):
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
# Powershell requires the 'Depth' argument to equal 3 here to expand 'Extras', otherwise it will read System.Collections.Hashtable in the resturned json
|
# Powershell requires the 'Depth' argument to equal 3 here to expand 'Extras', otherwise it will read System.Collections.Hashtable in the returned json
|
||||||
|
|
||||||
} | ConvertTo-Json -Depth 3
|
} | ConvertTo-Json -Depth 3
|
||||||
Invoke-RestMethod -Method 'Post' -Uri $uri -Body $body -ContentType "application/json" -UseBasicParsing
|
Invoke-RestMethod -Method 'Post' -Uri $uri -Body $body -ContentType "application/json" -UseBasicParsing
|
||||||
|
@ -2018,7 +2018,7 @@ And the same example using [JSON publishing](#publish-as-json):
|
||||||
body = '{"action": "close"}'
|
body = '{"action": "close"}'
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
# Powershell requires the 'Depth' argument to equal 3 here to expand 'headers', otherwise it will read System.Collections.Hashtable in the resturned json
|
# Powershell requires the 'Depth' argument to equal 3 here to expand 'headers', otherwise it will read System.Collections.Hashtable in the returned json
|
||||||
} | ConvertTo-Json -Depth 3
|
} | ConvertTo-Json -Depth 3
|
||||||
Invoke-RestMethod -Method 'Post' -Uri $uri -Body $body -ContentType "application/json" -UseBasicParsing
|
Invoke-RestMethod -Method 'Post' -Uri $uri -Body $body -ContentType "application/json" -UseBasicParsing
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in a new issue