{"id":24143703,"url":"https://github.com/is2ei/ueberauth_typetalk","last_synced_at":"2026-05-13T00:32:36.125Z","repository":{"id":62430602,"uuid":"169090826","full_name":"is2ei/ueberauth_typetalk","owner":"is2ei","description":"Typetalk OAuth2 Strategy for Überauth ","archived":false,"fork":false,"pushed_at":"2019-06-30T02:47:18.000Z","size":38,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-02-14T05:40:16.060Z","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/is2ei.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":"2019-02-04T14:29:19.000Z","updated_at":"2019-06-30T02:47:20.000Z","dependencies_parsed_at":"2022-11-01T20:20:53.185Z","dependency_job_id":null,"html_url":"https://github.com/is2ei/ueberauth_typetalk","commit_stats":null,"previous_names":[],"tags_count":13,"template":false,"template_full_name":null,"purl":"pkg:github/is2ei/ueberauth_typetalk","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/is2ei%2Fueberauth_typetalk","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/is2ei%2Fueberauth_typetalk/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/is2ei%2Fueberauth_typetalk/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/is2ei%2Fueberauth_typetalk/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/is2ei","download_url":"https://codeload.github.com/is2ei/ueberauth_typetalk/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/is2ei%2Fueberauth_typetalk/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32963160,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-12T23:30:32.555Z","status":"ssl_error","status_checked_at":"2026-05-12T23:30:18.191Z","response_time":102,"last_error":"SSL_read: 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":"2025-01-12T05:28:18.762Z","updated_at":"2026-05-13T00:32:36.102Z","avatar_url":"https://github.com/is2ei.png","language":"Elixir","funding_links":[],"categories":[],"sub_categories":[],"readme":"Überauth Typetalk\n===\n[![Build Status](https://travis-ci.com/is2ei/ueberauth_typetalk.svg?branch=master)][travis]\n[![Codecov](https://codecov.io/gh/is2ei/ueberauth_typetalk/branch/master/graph/badge.svg)][codecov]\n[![Hex Version](http://img.shields.io/hexpm/v/ueberauth_typetalk.svg)][hex]\n[![Hex docs](http://img.shields.io/badge/hex.pm-docs-green.svg)][docs]\n\n[travis]: https://travis-ci.com/is2ei/ueberauth_typetalk\n[codecov]: https://codecov.io/gh/is2ei/ueberauth_typetalk\n[hex]: https://hex.pm/packages/ueberauth_typetalk\n[docs]: https://hexdocs.pm/ueberauth_typetalk\n\nTypetalk OAuth2 Strategy for Überauth \n\n## Installation\n\n1. Setup your application at [Typetalk Developer page](https://typetalk.com/my/develop/applications).\n\n2. Add ueberauth_typetalk to your list of dependencies in `mix.exs`:\n\n```elixir\ndef deps do\n  [{:ueberauth_typetalk, \"~\u003e 0.2\"}]\nend\n```\n\n3. Add the strategy to your applications:\n\n```elixir\ndef application do\n  [application: [:ueberauth_typetalk]]\nend\n```\n\n4. Add Typetalk to your Überauth configuration:\n\n```elixir\nconfig :ueberauth, Ueberauth,\n  providers: [\n    typetalk: {Ueberauth.Strategy.Typetalk, []}\n  ]\n```\n\n5. Update your provider configuration:\n\n```elixir\nconfig :ueberauth, Ueberauth.Strategy.Typetalk.OAuth,\n  client_id: System.get_env(\"TYPETALK_CLIENT_ID\")\n  client_secret: System.get_env(\"TYPETALK_CLIENT_SECRET\")\n```\n\n6. Include the Überauth plug in your controller:\n\n```elixir\ndefmodule MyApp.AuthController do\n  use MyApp.Web, :controller\n\n  pipeline :browser do\n    plug Ueberauth\n    ...\n  end\nend\n```\n\n7. Create the request and callback routes if you haven't already:\n\n```elixir\nscope \"/auth\", MyApp do\n  pipe_through :browser\n\n  get \"/:provider\", AuthController, :request\n  get \"/:provider/callback\", AuthController, :callback\nend\n```\n\n8. Your controller needs to implement callbacks to deal with `Ueberauth.Auth` and `Ueberauth.Failure` responses.\n\nFor an example implementation see [the Example applciation](https://github.com/is2ei/ueberauth_typetalk_example).\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fis2ei%2Fueberauth_typetalk","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fis2ei%2Fueberauth_typetalk","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fis2ei%2Fueberauth_typetalk/lists"}