Skip to content

Add Url Decoding  #60

@crommcruach

Description

@crommcruach

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:

$urlTodDecode="http://localhost:8080/?text=das%20ist%20ein%20text"
$decodedURL = [System.Web.HttpUtility]::UrlDecode($urlTodDecode)
echo $decodedURL

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)

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions