Bing Search API Azure Marketplace Authentication in Java

后端 未结 1 1273
南笙
南笙 2020-12-11 05:58

How can I authenticate in Java to use the new bing search api from Azure Marketplace?The migration guide does not provide you with info about Java

相关标签:
1条回答
  • 2020-12-11 06:37

    You'll need to encode your accountKey to Base64 and pass it to each request using the Authorization header.

    String bingUrl = "https://api.datamarket.azure.com/Bing/Search/................";
    
    String accountKey = "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=";
    byte[] accountKeyBytes = Base64.encodeBase64((accountKey + ":" + accountKey).getBytes());
    String accountKeyEnc = new String(accountKeyBytes);
    
    URL url = new URL(bingUrl);
    URLConnection urlConnection = url.openConnection();
    urlConnection.setRequestProperty("Authorization", "Basic " + accountKeyEnc);
    
    ...
    

    This code is based on the the PHP example found in the Migrating to the Bing Search API in Windows Azure Marketplace document.

    Update: Modified the encodeBase64 call, it should be like this: accountKey + ":" + accountKey

    0 讨论(0)
提交回复
热议问题