skip to Main Content

Azure – Get extended property Microsoft graph mailFolders

This is maybe a very dumb question but I am trying to create a hidden folder with multiValueExtendedProperties. If I´m creating the folder like this: POST https://graph.microsoft.com/v1.0/me/mailFolders { "displayName": "Test", "isHidden": "true", "multiValueExtendedProperties": [ { "id": "StringArray {66f5a359-4659-4830-9070-00050ec6ac6e} Name Recreation",…

VIEW QUESTION

Nginx – How I can hide URL parameters in a reverse proxy?

I have the following reverse proxy in Nginx. I am trying to hide the sig key. location /documents { set $delimeter ""; if ($is_args) { set $delimeter "&"; } set $args "$args${delimeter}sp=rl&st=2024-02-15T14:18:59Z&se=2025-02-15T22:18:59Z&spr=https&sv=2022-11-02&sr=c&sig=TxTaaaaaaaaaaaaaaaaaaaaaaaaaaNgU%3D"; proxy_pass https://testtestsitweu.blob.core.windows.net/publicfiles/MyFiles/; proxy_ssl_name testtestsitweu.blob.core.windows.net; proxy_ssl_server_name on; } But…

VIEW QUESTION
Back To Top
Search