You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So u could achive this in restps by simply replacing this line:
$RawRequestURL = $script:Request.RawUrl
$RawRequestURL = [System.Web.HttpUtility]::UrlDecode($script:Request.RawUrl)
The text was updated successfully, but these errors were encountered:
For Example u send following URL to RESTPS:
http://localhost:8080/test/route?text=das ist ein text
U will recieve this Parameter: text=das%20ist%20ein%20text"
Now we could use this to decode the URL Properly:
Return
http://localhost:8080/test/route?text=das ist ein text
So u could achive this in restps by simply replacing this line:
$RawRequestURL = $script:Request.RawUrl
$RawRequestURL = [System.Web.HttpUtility]::UrlDecode($script:Request.RawUrl)
The text was updated successfully, but these errors were encountered: