I know I can use the api way to POST pull request because I have read this page .
I want to use the way to pull request from a fork-repo to repo but got "Bad request".
I used this code and
curl -X POST -H "Content-Type: application/json" -u $Bitbucket_User:$Bitbucket_Pass \
https://bitbucket.org/api/2.0/repositories/$Bitbucket_User/$Repo/pullrequests \
-d '{"title": "test api pull request",
"description": "test api pull request.",
"source": {
"branch": {
"name": "fork_repo_branch"
},
"repository": {
"full_name": "$Bitbucket_User/$fork_repo"
}
},
"destination": {
"branch": {
"name": "repo_branch"
}
},
"close_source_branch": false
}'
Do someone know what wrong is?
Was there any other information with the response? There should be some additional information there about what specifically is wrong.
Also, please use `api.bitbucket.org/2.0/` in the URL instead of `bitbucket.org/api/2.0/` - it should be a bit more responsive.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Could you plz guide me to add source ?I am getting error "malformed object"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Can you pls help to fork a repo using the API, some mentioned bu they havent provided a complete code.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.