asp.net azure active directory integration error message contains '[PII is hidden]'2019 Community Moderator ElectionASP.NET and Active Directory - Messages GlobalizationAuthenticating a PHP Web App with Azure Active Directory and Azure Mobile ServicesAzure Active Directory and Windows AuthenticationSQL Azure Integrated Authentication with a cloud-only Azure Active Directory fails.NET Core and Azure Active Directory integrationAzure, python manage Active DirectorySSMS Active Directory Authentication with Azure SQL DBAzure Active Directory, IDX10500: Signature validation failedVSTS Adding Users from Azure Active DirectoryKeyword not supported: 'authentication' error for azure integrated connection
Sampling from Gaussian mixture models, when are the sampled data independent?
Why does Central Limit Theorem break down in my simulation?
Is divide-by-zero a security vulnerability?
Help! My Character is too much for her story!
Is there a way to make cleveref distinguish two environments with the same counter?
How to make sure I'm assertive enough in contact with subordinates?
How do we create new idioms and use them in a novel?
Having the player face themselves after the mid-game
Is it appropriate to ask a former professor to order a book for me through an inter-library loan?
-1 to the power of a irrational number
What is better: yes / no radio, or simple checkbox?
Should we avoid writing fiction about historical events without extensive research?
Is this Paypal Github SDK reference really a dangerous site?
Why do phishing e-mails use faked e-mail addresses instead of the real one?
Insult for someone who "doesn't know anything"
How to install round brake pads
How do I increase the number of TTY consoles?
Are these two graphs isomorphic? Why/Why not?
How exactly does an Ethernet collision happen in the cable, since nodes use different circuits for Tx and Rx?
School performs periodic password audits. Is my password compromised?
When an outsider describes family relationships, which point of view are they using?
How do I raise a figure (placed with wrapfig) to be flush with the top of a paragraph?
When to use a QR code on a business card?
What is the purpose of a disclaimer like "this is not legal advice"?
asp.net azure active directory integration error message contains '[PII is hidden]'
2019 Community Moderator ElectionASP.NET and Active Directory - Messages GlobalizationAuthenticating a PHP Web App with Azure Active Directory and Azure Mobile ServicesAzure Active Directory and Windows AuthenticationSQL Azure Integrated Authentication with a cloud-only Azure Active Directory fails.NET Core and Azure Active Directory integrationAzure, python manage Active DirectorySSMS Active Directory Authentication with Azure SQL DBAzure Active Directory, IDX10500: Signature validation failedVSTS Adding Users from Azure Active DirectoryKeyword not supported: 'authentication' error for azure integrated connection
I am getting an error message relating to an attempt to authenticate with azure active directory and in that error message the url it is trying to connect to is shown as '[PII is hidden]'.
I think i can better resolve the issue if i can see this value but i don't know how to tell .net that it is okay to show it to me. Does anyone know how to force .net to show me the value/url that it is hiding?
asp.net
add a comment |
I am getting an error message relating to an attempt to authenticate with azure active directory and in that error message the url it is trying to connect to is shown as '[PII is hidden]'.
I think i can better resolve the issue if i can see this value but i don't know how to tell .net that it is okay to show it to me. Does anyone know how to force .net to show me the value/url that it is hiding?
asp.net
add a comment |
I am getting an error message relating to an attempt to authenticate with azure active directory and in that error message the url it is trying to connect to is shown as '[PII is hidden]'.
I think i can better resolve the issue if i can see this value but i don't know how to tell .net that it is okay to show it to me. Does anyone know how to force .net to show me the value/url that it is hiding?
asp.net
I am getting an error message relating to an attempt to authenticate with azure active directory and in that error message the url it is trying to connect to is shown as '[PII is hidden]'.
I think i can better resolve the issue if i can see this value but i don't know how to tell .net that it is okay to show it to me. Does anyone know how to force .net to show me the value/url that it is hiding?
asp.net
asp.net
asked Mar 6 at 13:34
dotcentric-sambdotcentric-samb
227
227
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
After a lot of searching i found that the way to make the error and logging show the correct value instead of the text '[PII is hidden]' is to add the following line of code:
IdentityModelEventSource.ShowPII = true;
after adding this i am now able to see what url is being requested and update my settings accordingly.
Sam
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55024380%2fasp-net-azure-active-directory-integration-error-message-contains-pii-is-hidde%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
After a lot of searching i found that the way to make the error and logging show the correct value instead of the text '[PII is hidden]' is to add the following line of code:
IdentityModelEventSource.ShowPII = true;
after adding this i am now able to see what url is being requested and update my settings accordingly.
Sam
add a comment |
After a lot of searching i found that the way to make the error and logging show the correct value instead of the text '[PII is hidden]' is to add the following line of code:
IdentityModelEventSource.ShowPII = true;
after adding this i am now able to see what url is being requested and update my settings accordingly.
Sam
add a comment |
After a lot of searching i found that the way to make the error and logging show the correct value instead of the text '[PII is hidden]' is to add the following line of code:
IdentityModelEventSource.ShowPII = true;
after adding this i am now able to see what url is being requested and update my settings accordingly.
Sam
After a lot of searching i found that the way to make the error and logging show the correct value instead of the text '[PII is hidden]' is to add the following line of code:
IdentityModelEventSource.ShowPII = true;
after adding this i am now able to see what url is being requested and update my settings accordingly.
Sam
answered Mar 6 at 16:15
dotcentric-sambdotcentric-samb
227
227
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55024380%2fasp-net-azure-active-directory-integration-error-message-contains-pii-is-hidde%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown