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










0















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?










share|improve this question


























    0















    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?










    share|improve this question
























      0












      0








      0








      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?










      share|improve this question














      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 azure-active-directory






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 6 at 13:34









      dotcentric-sambdotcentric-samb

      227




      227






















          1 Answer
          1






          active

          oldest

          votes


















          0














          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






          share|improve this answer






















            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
            );



            );













            draft saved

            draft discarded


















            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









            0














            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






            share|improve this answer



























              0














              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






              share|improve this answer

























                0












                0








                0







                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






                share|improve this answer













                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







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Mar 6 at 16:15









                dotcentric-sambdotcentric-samb

                227




                227





























                    draft saved

                    draft discarded
















































                    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.




                    draft saved


                    draft discarded














                    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





















































                    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







                    Popular posts from this blog

                    AWS Lex not identifying response if by a variable The 2019 Stack Overflow Developer Survey Results Are In Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) The Ask Question Wizard is Live! Data science time! April 2019 and salary with experienceEnforcing custom enumeration in AWS LEX for slot valuesHow to give response based on user response in Amazon Lex?Intercepting AWS Lambda Response to a AWS Lex QueryLex chat bot error: Reached second execution of fulfillment lambda on the same utteranceamazon lex showing invalid responseLambda response send back to Lex slot?Response card in Amazon lexAmazon Lex - Lambda response return HTML to botHow can I solve 424 (Failed Dependency) (python) obtained from Amazon lex?

                    Алба-Юлія

                    Захаров Федір Захарович