有没有办法使用Azure Management Libraries的自签名证书登录Azure?
jQuery.noConflict();
function preencheDocumento(){
var value1 = jQuery("#nroDocumento").val();
jQuery.ajax({
type: "get",
url: "obterDocumento.do",
data: 'nroDocumento=' + value1,
success: function(extratoLancamento) {
$(form.extratoLancamento.achouLancamento).val(extratoLancamento.achouLancamento);
$(form.extratoLancamento.data).val(extratoLancamento.data);
},
error: function() {
alert("Erro ao obter esse documento!");
}
});
}
中似乎没有任何内容,Authenticate with the Azure Management Libraries for .NET的文档也没有提及GH CertificateAuthenticationProvider以外的任何内容。这反过来由显示ApplicationTokenProvider的in a few tests使用。
<编辑:我已经在https://github.com/Azure/azure-sdk-for-net/issues/3373找到了GH的问题。它还概述了一个解决方案。
答案 0 :(得分:1)
关于GitHub中的这个问题以及https://github.com/Azure/azure-sdk-for-net/issues/3373的解决方案存在问题。看起来将来有证书的登录将包含在库中。