繁体   English   中英

使用Java代码中的JIRA REST API的GET方法时出现HTTP 401异常

[英]HTTP 401 exception while using GET method of JIRA REST API from Java Code

我正在尝试使用Java代码使用JIRA API。 它给我401。此错误指出

HTTP Error 401 - Unauthorized: Access is denied due to invalid credentials.

但是我在代码中使用的链接和凭据与Firefox REST Client完美配合,这让我发疯。 这是我的代码。

    String url = "https://jira.atlassian.com/rest/api/1/search?jql=project=APS";
    URL obj = new URL(url);

    HttpURLConnection con = (HttpURLConnection) obj.openConnection();

    //Setting the Request Method header as GET
    con.setRequestMethod("GET");

    //Prepairing credentials        
    String cred= "ahmed.tausif@spmconsulting.net:spm12345678";
    byte[] encoded = Base64.encodeBase64(cred.getBytes());                     
    String credentials = new String(encoded);

    //Setting the Authorization Header as 'Basic' with the given credentials
    con.setRequestProperty  ("Authorization", "Basic " + credentials);

    //Setting the User-Agent header
    con.setRequestProperty("User-Agent", USER_AGENT);

    int responseCode = con.getResponseCode();

    //reading the return 
    BufferedReader in = new BufferedReader(
                new InputStreamReader(con.getInputStream())
            );
    String inputLine;
    StringBuffer response = new StringBuffer();

    while ((inputLine = in.readLine()) != null) {
        response.append(inputLine);
    }
    in.close();

    String result = response.toString();

我收到以下异常

Exception in thread "main" java.io.IOException: Server returned HTTP response code: 401 for URL: https://jira.atlassian.com/rest/api/2/issue/USER-274
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
    at java.lang.reflect.Constructor.newInstance(Unknown Source)
    at sun.net.www.protocol.http.HttpURLConnection$10.run(Unknown Source)
    at sun.net.www.protocol.http.HttpURLConnection$10.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at sun.net.www.protocol.http.HttpURLConnection.getChainedException(Unknown Source)
    at sun.net.www.protocol.http.HttpURLConnection.getInputStream0(Unknown Source)
    at sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown Source)
    at sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(Unknown Source)
    at jira_RESPAPI.getJSON(jira_RESPAPI.java:53)
    at connector.main(connector.java:37)
Caused by: java.io.IOException: Server returned HTTP response code: 401 for URL: https://jira.atlassian.com/rest/api/2/issue/USER-274
    at sun.net.www.protocol.http.HttpURLConnection.getInputStream0(Unknown Source)
    at sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown Source)
    at java.net.HttpURLConnection.getResponseCode(Unknown Source)
    at sun.net.www.protocol.https.HttpsURLConnectionImpl.getResponseCode(Unknown Source)
    at jira_RESPAPI.getJSON(jira_RESPAPI.java:49)

花在这个上的时间无法弄清楚。

ps另外,当我通过Firefox RESTClient发送GET请求时,将出现以下框,单击5-7次使其消失,然后我可以看到结果。 在此处输入图片说明

我尝试了与您完全相同的代码(进行了一些非常小的更改),并且效果很好。 由此我只能假设:

  1. 您提供的凭据不正确
  2. 您的网址中有错字
  3. Base64.encodeBase64返回错误的东西。

尝试使用

java.util.Base64.getEncoder().encode(cred.getBytes())

代替

我的完整代码,供您参考:

    package hello;

    import org.springframework.http.HttpHeaders;

    import java.io.BufferedReader;
    import java.io.IOException;
    import java.io.InputStreamReader;
    import java.net.HttpURLConnection;
    import java.net.URL;
    import java.util.Base64;


    public class Application {

        public static void main(String args[]) throws IOException {
            String url = "https://my-jira-domain.atlassian.net/rest/api/2/issue/MOON-13";
            URL obj = new URL(url);

            HttpURLConnection con = (HttpURLConnection) obj.openConnection();

            //Setting the Request Method header as GET
            con.setRequestMethod("GET");

            //Prepairing credentials
            String cred = "my@jira.com:mypassword";
            byte[] encoded = Base64.getEncoder().encode(cred.getBytes());
            String credentials = new String(encoded);

            //Setting the Authorization Header as 'Basic' with the given credentials
            con.setRequestProperty("Authorization", "Basic " + credentials);

            //Setting the User-Agent header
            con.setRequestProperty("User-Agent", HttpHeaders.USER_AGENT);

            int responseCode = con.getResponseCode();

            //reading the return
            BufferedReader in = new BufferedReader(
                    new InputStreamReader(con.getInputStream())
            );
            String inputLine;
            StringBuffer response = new StringBuffer();

            while ((inputLine = in.readLine()) != null) {
                response.append(inputLine);
            }
            in.close();

            String result = response.toString();
        }
    }

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM