Hi, I need to open a sharepoint link where I upload documents in it. But the sharepoint url contains '%' and PAD cannot continue the process. I have tried ways such as removing any % or double it up by %% but it does not work. Is there any other solutions that can overcome this? this is what happens when doing the above. Thanks 🙂
@JackyGrealish See it solves your issue: https://powerusers.microsoft.com/t5/Power-Automate-Desktop/Facing-Parameter-Initial-URL-Syntax-error...
Cheers,
Ankesh
--------------------------------
If this post helps answer your question, please click on “Accept as Solution” to help other members find it more quickly. If you thought this post was helpful, please give it a Thumbs Up.
Do you mean adding a '%' at the end? as I just tried it and it still prompt me the same error.
Set it in a variable in single quotes and pass the variable
I do not know if there is any url encoding functionality in PAD, but can you try by replacing the % characters with its corresponding equivalent.
For example replacing %20 with space and the others as per the table inside.
https://www.w3schools.com/tags/ref_urlencode.ASP
I mean like this: %'https://www.bing.com/?toWww=1&redig=2688499BF0034643B6B289E9F4D81BCA'%
@JackyGrealish Adding to what @VJR has suggested(Escape The Special Characters In The URL)
I would recommend you to try this approach and eventually you will get your URL which can be parsed by PAD:
Lets say this is a lengthy SP URL:
The trick could be to break it into smaller sections. PAD doesn't check whether the URL address itself is a valid web page until run-time. Its only checking for invalid characters.
Split up your string
split up the string and enter increasingly longer sections at a time.
Then add another short section:
If it gives an invalid message. You would know that the second half of the string has a special character that needs to be escaped.
Keep adding on sections
It wont take long before you have a full URL that PAD can parse.
Cheers,
Ankesh
--------------------------------
If this post helps answer your question, please click on “Accept as Solution” to help other members find it more quickly. If you thought this post was helpful, please give it a Thumbs Up.
User | Count |
---|---|
13 | |
8 | |
6 | |
6 | |
5 |
User | Count |
---|---|
20 | |
17 | |
17 | |
12 | |
11 |