BitBucket OAuth Consumer
# BitBucket OAuth Consumer
# Create a new OAuth Consumer
- Go to Bitbucket settings - OAuth
- Click Add consumer
- Set the
Callback URL
to your site URL (Here we takelocalhost:8080
for example) - Unselect
This is a private consumer
- Select
Account - Read
andIssues - Write
permissions
# Get the Client ID
Then you’ve created a new OAuth Consumer, and here is your Key (Client ID
).
# Config and start your Vssue
Copy the Client ID
, and set owner
and repo
.
The URL pattern of bitbucket repo is
https://bitbucket.org/${owner}/${repo}
Here we take https://bitbucket.org/meteorlxy/vssue-demo
for example, and set the title
of issue to Vssue Demo
.
Then run anywhere -h localhost 8080
to serve the index.html
on localhost:8080
.
# Try out Vssue locally
Vssue has already run here. Click Login
to login with Bitbucket account.
Redirect to Bitbucket Authorization page. Click Grant access
to login.
Oops, failed to load comments. Your repository should enable the Issue Tracker to make Vssue works.
Leave a comment on this page ~
Tips
You can go to the repository meteorlxy/vssue-demo (opens new window) to get the demo code. Check the #1 issue (opens new window) of that repository to see what happened.