{"id":15405195,"url":"https://github.com/fnando/omniauth-atlassian-bitbucket","last_synced_at":"2025-08-02T20:33:06.452Z","repository":{"id":56886323,"uuid":"104032049","full_name":"fnando/omniauth-atlassian-bitbucket","owner":"fnando","description":"Bitbucket's OAuth2 Strategy for OmniAuth. This strategy uses API 2.0 to retrieve user information.","archived":false,"fork":false,"pushed_at":"2020-09-24T20:06:01.000Z","size":11,"stargazers_count":3,"open_issues_count":0,"forks_count":3,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-27T07:47:30.930Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/fnando.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null},"funding":{"github":["fnando"],"custom":["https://www.paypal.me/nandovieira/🍕"]}},"created_at":"2017-09-19T05:48:53.000Z","updated_at":"2020-09-24T20:06:04.000Z","dependencies_parsed_at":"2022-08-21T00:50:15.965Z","dependency_job_id":null,"html_url":"https://github.com/fnando/omniauth-atlassian-bitbucket","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/fnando/omniauth-atlassian-bitbucket","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fnando%2Fomniauth-atlassian-bitbucket","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fnando%2Fomniauth-atlassian-bitbucket/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fnando%2Fomniauth-atlassian-bitbucket/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fnando%2Fomniauth-atlassian-bitbucket/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fnando","download_url":"https://codeload.github.com/fnando/omniauth-atlassian-bitbucket/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fnando%2Fomniauth-atlassian-bitbucket/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268208784,"owners_count":24213226,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-01T02:00:08.611Z","response_time":67,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-01T16:15:24.235Z","updated_at":"2025-08-02T20:33:06.394Z","avatar_url":"https://github.com/fnando.png","language":"Ruby","funding_links":["https://github.com/sponsors/fnando","https://www.paypal.me/nandovieira/🍕"],"categories":[],"sub_categories":[],"readme":"# Omniauth::Bitbucket\n\n[![Travis-CI](https://travis-ci.org/fnando/omniauth-atlassian-bitbucket.svg)](https://travis-ci.org/fnando/omniauth-atlassian-bitbucket)\n[![CodeClimate](https://codeclimate.com/github/fnando/omniauth-atlassian-bitbucket.svg)](https://codeclimate.com/github/fnando/omniauth-atlassian-bitbucket)\n[![Gem](https://img.shields.io/gem/v/omniauth-atlassian-bitbucket.svg)](https://rubygems.org/gems/omniauth-atlassian-bitbucket)\n[![Gem](https://img.shields.io/gem/dt/omniauth-atlassian-bitbucket.svg)](https://rubygems.org/gems/omniauth-atlassian-bitbucket)\n\n[Bitbucket](http://bitbucket.org)'s OAuth2 Strategy for OmniAuth. This strategy\nuses API 2.0 to retrieve user information.\n\n## Installation\n\nAdd this line to your application's Gemfile:\n\n    gem 'omniauth-atlassian-bitbucket'\n\nAnd then execute:\n\n    $ bundle\n\nOr install it yourself as:\n\n    $ gem install omniauth-atlassian-bitbucket\n\n## Usage\n\n`OmniAuth::Strategies::Bitbucket` is simply a Rack middleware. Read the OmniAuth\ndocs for detailed instructions: \u003chttps://github.com/intridea/omniauth\u003e.\n\nFirst, create a new application at\n`https://bitbucket.org/account/user/\u003cyour username\u003e/api`. Your callback URL must\nbe something like `https://example.com/auth/bitbucket/callback`. For development\nyou can use `http://127.0.0.1:3000/auth/bitbucket/callback`.\n\nHere's a quick example, adding the middleware to a Rails app in\n`config/initializers/omniauth.rb`. This example assumes you're exporting your\ncredentials as environment variables.\n\nNotice that we'll always inject `account` and `emails` scopes, so we can\nretrieve the required information.\n\n```ruby\nRails.application.config.middleware.use OmniAuth::Builder do\n  provider :bitbucket,\n            ENV['BITBUCKET_CLIENT_ID'],\n            ENV['BITBUCKET_CLIENT_SECRET']\nend\n```\n\nNow visit `/auth/bitbucket` to start authentication against Bitbucket.\n\n## Contributing\n\n1. Fork\n   [omniauth-atlassian-bitbucket](https://github.com/fnando/omniauth-atlassian-bitbucket/fork)\n2. Create your feature branch (`git checkout -b my-new-feature`)\n3. Commit your changes (`git commit -am 'Add some feature'`)\n4. Push to the branch (`git push origin my-new-feature`)\n5. Create a new Pull Request\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffnando%2Fomniauth-atlassian-bitbucket","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffnando%2Fomniauth-atlassian-bitbucket","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffnando%2Fomniauth-atlassian-bitbucket/lists"}