{"id":13507458,"url":"https://github.com/he9qi/ueberauth_weibo","last_synced_at":"2026-02-18T22:02:10.004Z","repository":{"id":62430610,"uuid":"55738895","full_name":"he9qi/ueberauth_weibo","owner":"he9qi","description":"Weibo OAuth2 strategy for Überauth.","archived":false,"fork":false,"pushed_at":"2016-05-12T04:54:40.000Z","size":19,"stargazers_count":11,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-21T18:44:33.337Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Elixir","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/he9qi.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2016-04-08T01:03:20.000Z","updated_at":"2023-07-09T04:15:39.000Z","dependencies_parsed_at":"2022-11-01T20:19:23.031Z","dependency_job_id":null,"html_url":"https://github.com/he9qi/ueberauth_weibo","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/he9qi/ueberauth_weibo","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/he9qi%2Fueberauth_weibo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/he9qi%2Fueberauth_weibo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/he9qi%2Fueberauth_weibo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/he9qi%2Fueberauth_weibo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/he9qi","download_url":"https://codeload.github.com/he9qi/ueberauth_weibo/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/he9qi%2Fueberauth_weibo/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29596329,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-18T20:59:56.587Z","status":"ssl_error","status_checked_at":"2026-02-18T20:58:41.434Z","response_time":162,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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-08-01T02:00:34.109Z","updated_at":"2026-02-18T22:02:09.983Z","avatar_url":"https://github.com/he9qi.png","language":"Elixir","funding_links":[],"categories":["Authentication"],"sub_categories":[],"readme":"# Überauth Weibo\n\n[![Build Status][travis-img]][travis] [![Coverage Status][coverage-img]][coverage] [![Hex Version][hex-img]][hex] [![License][license-img]][license]\n\n[coverage-img]: https://coveralls.io/repos/he9qi/ueberauth_weibo/badge.svg?branch=master\u0026service=github\n[coverage]: https://coveralls.io/github/he9qi/ueberauth_weibo?branch=master\n[travis-img]: https://travis-ci.org/he9qi/ueberauth_weibo.svg?branch=master\n[travis]: https://travis-ci.org/he9qi/ueberauth_weibo\n[hex-img]: https://img.shields.io/hexpm/v/ueberauth_weibo.svg\n[hex]: https://hex.pm/packages/ueberauth_weibo\n[license-img]: http://img.shields.io/badge/license-MIT-brightgreen.svg\n[license]: http://opensource.org/licenses/MIT\n\n\u003e Weibo OAuth2 strategy for Überauth.\n\n## Installation\n\n  1. Setup your application at [Weibo Open Platform](http://open.weibo.com).\n\n  2. Add `:ueberauth_weibo` to your list of dependencies in `mix.exs`:\n\n        def deps do\n          [{:ueberauth_weibo, \"~\u003e 0.0.3\"}]\n        end\n\n  3. Add the strategy to your application:\n\n        def application do\n          [applications: [:ueberauth_weibo]]\n        end\n\n  4. Add Weibo to your Überauth configuration:\n\n      ```elixir\n      config :ueberauth, Ueberauth,\n        providers: [\n          weibo: {Ueberauth.Strategy.Weibo, []}\n        ]\n      ```\n\n  5.  Update your provider configuration:\n\n      ```elixir\n      config :ueberauth, Ueberauth.Strategy.Weibo.OAuth,\n        client_id: System.get_env(\"WEIBO_CLIENT_ID\"),\n        client_secret: System.get_env(\"WEIBO_CLIENT_SECRET\")\n      ```\n\n  6.  Include the Überauth plug in your controller:\n\n      ```elixir\n      defmodule MyApp.AuthController do\n        use MyApp.Web, :controller\n        plug Ueberauth\n        ...\n      end\n      ```\n\n  7.  Create the request and callback routes if you haven't already:\n\n      ```elixir\n      scope \"/auth\", MyApp do\n        pipe_through :browser\n\n        get \"/:provider\", AuthController, :request\n        get \"/:provider/callback\", AuthController, :callback\n      end\n      ```\n\n  8. You controller needs to implement callbacks to deal with `Ueberauth.Auth` and `Ueberauth.Failure` responses.\n\n  For an example implementation see the [Überauth Example](https://github.com/ueberauth/ueberauth_example) application.\n\n\n## Calling\n\n    Depending on the configured url you can initial the request through:\n\n        /auth/weibo\n\n## License\n\n  Please see [LICENSE](https://github.com/he9qi/ueberauth_weibo/blob/master/LICENSE) for licensing details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhe9qi%2Fueberauth_weibo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhe9qi%2Fueberauth_weibo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhe9qi%2Fueberauth_weibo/lists"}