Hi,
My goal is to create weekly planner tasks to remind me to check Azure reports. The task creation works fine but when I try to add the link to the Azure report, the task update fails.
This is because the link includes a hashtag: https://portal.azure.com/#blade/Microsoft_AAD_IAM/RiskySignInsBlade
I tried using encodeUriComponent('https://portal.azure.com/#blade/Microsoft_AAD_IAM/RiskySignInsBlade')
I also tried to encode the url directly: https://portal.azure.com/%23blade/Microsoft_AAD_IAM/RiskySignInsBlade
This is the error message I get:
The request is invalid:
Encountered a metadata reference property 'https%3A//portal%2Eazure%2Ecom/#blade/Microsoft_AAD_IAM/RiskySignInsBlade/' in a scope other than an entry. In OData, a property name with a '#' character indicates a reference into the metadata and is only supported for describing operations bound to an entry.
Is there a way to handle the # character in that particular case? Or a workaround, like getting another URL for Azure?