{"id":28388823,"url":"https://github.com/ueberauth/ueberauth_example","last_synced_at":"2025-07-22T14:36:01.698Z","repository":{"id":42202071,"uuid":"46238655","full_name":"ueberauth/ueberauth_example","owner":"ueberauth","description":"Example Phoenix application using Überauth for authentication","archived":false,"fork":false,"pushed_at":"2023-11-21T23:18:40.000Z","size":1095,"stargazers_count":224,"open_issues_count":9,"forks_count":73,"subscribers_count":11,"default_branch":"master","last_synced_at":"2025-06-27T07:40:56.256Z","etag":null,"topics":["example","example-project","phoenix","strategies","ueberauth"],"latest_commit_sha":null,"homepage":"http://ueberauth-example.herokuapp.com","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/ueberauth.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-11-15T22:24:32.000Z","updated_at":"2025-04-18T14:45:00.000Z","dependencies_parsed_at":"2023-02-05T01:32:26.679Z","dependency_job_id":null,"html_url":"https://github.com/ueberauth/ueberauth_example","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ueberauth/ueberauth_example","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ueberauth%2Fueberauth_example","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ueberauth%2Fueberauth_example/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ueberauth%2Fueberauth_example/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ueberauth%2Fueberauth_example/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ueberauth","download_url":"https://codeload.github.com/ueberauth/ueberauth_example/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ueberauth%2Fueberauth_example/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266510780,"owners_count":23940712,"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-07-22T02:00:09.085Z","response_time":66,"last_error":null,"robots_txt_status":null,"robots_txt_updated_at":null,"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":["example","example-project","phoenix","strategies","ueberauth"],"created_at":"2025-05-30T23:16:01.782Z","updated_at":"2025-07-22T14:36:01.689Z","avatar_url":"https://github.com/ueberauth.png","language":"Elixir","readme":"# Überauth Example\n![](https://github.com/ueberauth/ueberauth_example/workflows/Elixir%20CI/badge.svg?event=push) [![License][license-img]][license]\n\n[license-img]: http://img.shields.io/badge/license-MIT-brightgreen.svg\n[license]: http://opensource.org/licenses/MIT\n\n\n\u003e Using Überauth for authentication in Phoenix.\n\nThis project demonstrates how to use Überauth and multiple strategies to provide authentication for a Phoenix application.  The project has been setup to run on Heroku can can be found at [ueberauth-example.herokuapp.com](https://ueberauth-example.herokuapp.com).\n\nIn this example we'll use five strategies:\n\n+ Facebook ([ueberauth_facebook](https://github.com/ueberauth/ueberauth_facebook))\n+ GitHub ([ueberauth_github](https://github.com/ueberauth/ueberauth_github))\n+ Google ([ueberauth_google](https://github.com/ueberauth/ueberauth_google))\n+ Slack ([ueberauth_slack](https://github.com/ueberauth/ueberauth_slack))\n+ Twitter ([ueberauth_twitter](https://github.com/ueberauth/ueberauth_twitter))\n+ Identity ([ueberauth_identity](https://github.com/ueberauth/ueberauth_identity))\n\n## Setup\n\n1. Ensure the following prerequisites are met/installed:\n\n  + Erlang 23\n  + Elixir 1.11\n\n1. Retrieve app ids and secrets and set environment variables:\n\n\t+ Facebook ([https://developers.facebook.com](https://developers.facebook.com))\n\t\t+ FACEBOOK_APP_ID\n\t\t+ FACEBOOK_APP_SECRET\n\t+ GitHub ([https://developer.github.com](https://developer.github.com))\n\t\t+ GITHUB_CLIENT_ID\n\t\t+ GITHUB_CLIENT_SECRET\n\t+ Google ([https://console.developers.google.com/home](https://console.developers.google.com/home))\n\t\t+ GOOGLE_CLIENT_ID\n\t\t+ GOOGLE_CLIENT_SECRET\n\t+ Slack ([https://api.slack.com/applications](https://api.slack.com/applications))\n\t\t+ SLACK_CLIENT_ID\n\t\t+ SLACK_CLIENT_SECRET\n\t+ Twitter ([https://dev.twitter.com](https://dev.twitter.com))\n\t\t+ TWITTER_CONSUMER_KEY\n\t\t+ TWITTER_CONSUMER_SECRET\n\n1. Clone the project:\n\n\t```shell\n\t$ git clone https://github.com/ueberauth/ueberauth_example.git\n\t$ cd ueberauth_example\n\t```\n\n1. Fetch dependencies:\n\n\t```shell\n\t$ mix deps.get \u0026\u0026 npm install --prefix assets\n\t```\n\n1. Run server:\n\n\t```shell\n\t$ mix phx.server\n\t```\n\n1. Authenticate at [http://localhost:4000](http://localhost:4000)!\n\n## Configuration\n\nSee [Überauth](https://github.com/ueberauth/ueberauth) for detailed instructions.\n\n## License\n\nPlease see [LICENSE](https://github.com/ueberauth/ueberauth_example/blob/master/LICENSE) for licensing details.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fueberauth%2Fueberauth_example","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fueberauth%2Fueberauth_example","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fueberauth%2Fueberauth_example/lists"}