0

java中的window azure身份验证...

String bingUrl = "https://api.datamarket.azure.com/Bing/Search/Web?Query='multiple'&$top=4&$skip=1&$format=json";
String accountKey = "HEPgn2ahb407EMW/j5TXKs5umkO6VDlb8anWMq+O2=";
byte[] accountKeyBytes = Base64.encode((accountKey + ":" + accountKey).getBytes());
String accountKeyEnc = new String(accountKeyBytes);
URL urlb = new URL(bingUrl);
URLConnection urlConnection =urlb.openConnection();
urlConnection.setRequestProperty("Authorization","basic " + accountKeyEnc);

但这不起作用...这里的帐户密钥不是实际的

4

1 回答 1

1

不久前我回答了一个类似的问题,这段代码确实有效:Bing Search API Azure Marketplace Authentication in Java

我看到的第一个问题是您正在调用Base64.encode,这实际上应该是:Base64.encodeBase64。您是否也可以尝试将basic更改为Basic(在 setRequestProperty 调用中)?

这些更改与正确的帐户密钥一起应该可以解决问题。

于 2012-07-25T11:06:45.530 回答