From 00547f0d6d68ff8803969ab02bea3c6a553168ac Mon Sep 17 00:00:00 2001 From: paradizelost Date: Tue, 15 Dec 2020 08:22:07 -0600 Subject: [PATCH] Update teedy.ps1 working doc and tag creation --- teedy.ps1 | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/teedy.ps1 b/teedy.ps1 index 672f1c0..50993e1 100644 --- a/teedy.ps1 +++ b/teedy.ps1 @@ -41,16 +41,22 @@ $tagtocreate = @{ color='#3a87ad' } $tagjson = $tagtocreate|ConvertTo-Json -Invoke-RestMethod -uri "$siteurl/api/tag" -Headers $headers -Method PUT -body $tagjson -ContentType "application/json" -Invoke-RestMethod -uri "$siteurl/api/tag" -Headers $headers -Method PUT -form $tagtocreate +$tagurlencode = [System.Web.HttpUtility]::UrlEncode($tagtocreate) +#Invoke-RestMethod -uri "$siteurl/api/tag" -Headers $headers -Method PUT -body $tagjson -ContentType "application/json" +#Invoke-RestMethod -uri "$siteurl/api/tag" -Headers $headers -Method PUT -form $tagtocreate +Invoke-RestMethod -uri "$siteurl/api/tag" -Headers $headers -Method PUT -body $tagtocreate -ContentType 'application/x-www-form-urlencoded' +#Invoke-RestMethod -uri "$siteurl/api/tag" -Headers $headers -Method PUT -body $tagurlencode -ContentType 'application/x-www-form-urlencoded' $doctocreate=@{ title="testDoc"; language="eng"; } $docjson = $doctocreate|ConvertTo-Json +$docurlencode = [System.Web.HttpUtility]::UrlEncode($doctocreate) -Invoke-RestMethod -uri "$siteurl/api/document" -Headers $headers -Method PUT -body $docjson -ContentType 'application/json' -Invoke-RestMethod -uri "$siteurl/api/document" -Headers $headers -Method PUT -form $doctocreate +#Invoke-RestMethod -uri "$siteurl/api/document" -Headers $headers -Method PUT -body $docjson -ContentType 'application/json' +Invoke-RestMethod -uri "$siteurl/api/document" -Headers $headers -Method PUT -body $doctocreate -ContentType 'application/x-www-form-urlencoded' +#Invoke-RestMethod -uri "$siteurl/api/document" -Headers $headers -Method PUT -form $doctocreate +#Invoke-RestMethod -uri "$siteurl/api/document" -Headers $headers -Method PUT -body $docurlencode -ContentType 'application/x-www-form-urlencoded' $logoutresponse = Invoke-webrequest -Uri "$siteurl/api/user/logout" -Headers $headers -Method POST