{"id":22348770,"url":"https://github.com/svycal/ueberauth_zoom","last_synced_at":"2025-07-30T06:31:05.535Z","repository":{"id":45966608,"uuid":"280473579","full_name":"svycal/ueberauth_zoom","owner":"svycal","description":"Zoom OAuth2 Strategy for Überauth","archived":false,"fork":false,"pushed_at":"2023-12-17T16:59:01.000Z","size":41,"stargazers_count":1,"open_issues_count":0,"forks_count":3,"subscribers_count":2,"default_branch":"main","last_synced_at":"2024-10-19T20:54:35.877Z","etag":null,"topics":["elixir","oauth2","zoom"],"latest_commit_sha":null,"homepage":"https://hexdocs.pm/ueberauth_zoom","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/svycal.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-07-17T16:29:36.000Z","updated_at":"2022-09-10T00:53:32.000Z","dependencies_parsed_at":"2022-09-21T01:02:49.530Z","dependency_job_id":null,"html_url":"https://github.com/svycal/ueberauth_zoom","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/svycal%2Fueberauth_zoom","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/svycal%2Fueberauth_zoom/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/svycal%2Fueberauth_zoom/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/svycal%2Fueberauth_zoom/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/svycal","download_url":"https://codeload.github.com/svycal/ueberauth_zoom/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":228098375,"owners_count":17869032,"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","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":["elixir","oauth2","zoom"],"created_at":"2024-12-04T11:06:26.060Z","updated_at":"2024-12-04T11:06:26.789Z","avatar_url":"https://github.com/svycal.png","language":"Elixir","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Überauth Zoom [![Hex Version](https://img.shields.io/hexpm/v/ueberauth_zoom.svg)](https://hex.pm/packages/ueberauth_zoom)\n\n\u003e Zoom OAuth2 strategy for Überauth.\n\n## Installation\n\n1. Setup your application at [Zoom App Marketplace](https://marketplace.zoom.us/).\n\n1. Add `:ueberauth_zoom` to your list of dependencies in `mix.exs`:\n\n    ```elixir\n    def deps do\n      [{:ueberauth_zoom, \"~\u003e 0.2.0\"}]\n    end\n    ```\n\n1. Add the strategy to your applications:\n\n    ```elixir\n    def application do\n      [applications: [:ueberauth_zoom]]\n    end\n    ```\n\n1. Add Zoom to your Überauth configuration:\n\n    ```elixir\n    config :ueberauth, Ueberauth,\n      providers: [\n        zoom: {Ueberauth.Strategy.Zoom, []}\n      ]\n    ```\n\n1.  Update your provider configuration:\n\n    Use that if you want to read client ID/secret from the environment\n    variables in the compile time:\n\n    ```elixir\n    config :ueberauth, Ueberauth.Strategy.Zoom.OAuth,\n      client_id: System.get_env(\"ZOOM_CLIENT_ID\"),\n      client_secret: System.get_env(\"ZOOM_CLIENT_SECRET\")\n    ```\n\n    Use that if you want to read client ID/secret from the environment\n    variables in the run time:\n\n    ```elixir\n    config :ueberauth, Ueberauth.Strategy.Zoom.OAuth,\n      client_id: {System, :get_env, [\"ZOOM_CLIENT_ID\"]},\n      client_secret: {System, :get_env, [\"ZOOM_CLIENT_SECRET\"]}\n    ```\n\n1.  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\n1.  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\n1. Your controller needs to implement callbacks to deal with `Ueberauth.Auth` and `Ueberauth.Failure` responses.\n\nFor an example implementation see the [Überauth Example](https://github.com/ueberauth/ueberauth_example) application.\n\n## Calling\n\nDepending on the configured url you can initiate the request through:\n\n    /auth/zoom\n    \n## License\n\nPlease see [LICENSE](https://github.com/svycal/ueberauth_zoom/blob/main/LICENSE.md) for licensing details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsvycal%2Fueberauth_zoom","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsvycal%2Fueberauth_zoom","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsvycal%2Fueberauth_zoom/lists"}