private string GetClaimValue(JsonEditor editor, string claimName)
        {
            var args = new SiblingValueArguments();

            args.SiblingSearchKey   = "typ";
            args.SiblingSearchValue = claimName;

            args.DesiredNodeKey = "val";
            args.PathArguments  = new[] { "user_claims" };

            var temp = editor.GetSiblingValue(args);

            return(temp);
        }