It's not the same without you
Join the community to find out what other Atlassian users are discussing, debating and creating.
I am trying to create a repository from a command line app that I am writing. I am using node.js to send a post request to the Bitbucket 2.0 api but even though I am successful in creating the repo, it doesn't seem to honour the settings I create the repo with (e.g. is_private = true, has_wiki = true, language = PHP). I am not sure what I am doing wrong. My guess is it's the way I am formatting the body? Below is the code that I am using.
Anyone able to help? Thanks in advance!
var dataString = '{"scm": "git", "has_wiki": true, "is_private": true}';
request({
url: 'https://api.bitbucket.org/2.0/repositories/' + username + '/' + _.kebabCase(answers.reponame),
method: 'POST',
headers: {'Authorization': 'Bearer ' + prefs.ginit.token},
body: dataString
}, function (err, res) {
status.stop();
if (err) {
console.log(err);
reject(new Error('Couldn\'t create remote repo.'));
}
let json = JSON.parse(res.body);
if(res.statusCode == 400) {
reject(new Error(json.error.message));
}
if (res.statusCode == 200) {
console.log(chalk.green('\n' + json.name + ' created sucessfully.'));
console.log(chalk.green('You can view it here: ' + json.links.html.href + '\n'));
resolve(json);
}
});
asdf
Hello! My name is Mark Askew and I am a Premier Support Engineer for products Bitbucket Server/Data Center, Fisheye & Crucible. Today, I want to bring the discussion that Jennifer, Matt, and ...
Connect with like-minded Atlassian users at free events near you!
Find a groupConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no AUG chapters near you at the moment.
Start an AUGYou're one step closer to meeting fellow Atlassian users at your local meet up. Learn more about AUGs