以编程方式访问位桶分支及其内容

时间:2016-08-30 07:42:20

标签: bitbucket bitbucket-api

我需要列出bitbucket分支的内容。当我运行下面的代码时,我能够看到分支,但我无法弄清楚如何进入分支。给分支ID也没有帮助。到目前为止的代码:

package com.bitbucket.test;
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.net.URL;
import java.net.URLConnection;
//import com.atlassian.bitbucket.branch.model.*;

public class BitBucketPluginTest {
    public static void main(String[] args) throws Exception {
        URL bb = new URL("https://api.bitbucket.org/2.0/repositories/{reponame}");
        URLConnection bbcon = bb.openConnection();
        BufferedReader in = new BufferedReader(
                                new InputStreamReader(
                                bbcon.getInputStream()));


        String inputLine;

        while ((inputLine = in.readLine()) != null) 
            System.out.println(inputLine);
        in.close();
    }
}

由于安全问题,我删除了回购名称。我目前正在以JSON格式获取数据。任何指导都表示赞赏。