{"id":15022894,"url":"https://github.com/bellgasp/ember-practical-oidc","last_synced_at":"2026-03-11T04:02:39.382Z","repository":{"id":22976306,"uuid":"97628341","full_name":"BellGasp/ember-practical-oidc","owner":"BellGasp","description":null,"archived":false,"fork":false,"pushed_at":"2023-03-02T08:11:04.000Z","size":3897,"stargazers_count":2,"open_issues_count":10,"forks_count":4,"subscribers_count":5,"default_branch":"master","last_synced_at":"2024-12-21T09:30:40.708Z","etag":null,"topics":["ember","ember-addon","oidc"],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","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/BellGasp.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-07-18T17:59:16.000Z","updated_at":"2023-11-01T00:55:41.000Z","dependencies_parsed_at":"2024-09-17T12:59:24.917Z","dependency_job_id":"811d0fc8-d2f4-46fe-9912-aa52cafe17d0","html_url":"https://github.com/BellGasp/ember-practical-oidc","commit_stats":{"total_commits":70,"total_committers":13,"mean_commits":5.384615384615385,"dds":0.6428571428571428,"last_synced_commit":"86debc32591e92b2f114de9a6078d3f753648bce"},"previous_names":[],"tags_count":13,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BellGasp%2Fember-practical-oidc","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BellGasp%2Fember-practical-oidc/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BellGasp%2Fember-practical-oidc/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BellGasp%2Fember-practical-oidc/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/BellGasp","download_url":"https://codeload.github.com/BellGasp/ember-practical-oidc/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":238035385,"owners_count":19405682,"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":["ember","ember-addon","oidc"],"created_at":"2024-09-24T19:58:29.920Z","updated_at":"2025-10-24T20:32:14.846Z","avatar_url":"https://github.com/BellGasp.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Ember Practical OIDC\n\n[![npm version](https://badge.fury.io/js/ember-practical-oidc.svg)](https://badge.fury.io/js/ember-practical-oidc)\n[![Ember Observer Score](https://emberobserver.com/badges/ember-practical-oidc.svg)](https://emberobserver.com/addons/ember-practical-oidc)\n[![Build Status](https://travis-ci.com/BellGasp/ember-practical-oidc.svg?branch=master)](https://travis-ci.com/BellGasp/ember-practical-oidc)\n[![Code Climate](https://codeclimate.com/github/BellGasp/ember-practical-oidc/badges/gpa.svg)](https://codeclimate.com/github/BellGasp/ember-practical-oidc)\n\n## Installation\n\nLike most ember addons, simply run `ember install ember-practical-oidc` and you should be all set as far as installation goes.\n\n## Configuration\n\n### Mandatory Configuration\n\n#### environment.js\nHere's the mandatory information you'll have to supply the addon using the `config/environment.js` file of your application. Without these four properties, it's impossible to construct a valid authentication payload.\n\n```js\nENV.OIDC = {\n  applicationName: '\u003cYOUR APP NAME\u003e',\n  applicationURL: '\u003cYOUR APP URL\u003e',\n  authenticationURL: '\u003cYOUR AUTHENTICATION ENDPOINT\u003e',\n  requestedScopes: '\u003cTHE REQUESTED SCOPES\u003e'\n};\n```\n\n### Optional Configuration\n\nHere are the additional configuration parameters that are available.\n\n| Property Key | Default Value | Type |\n|---|:-------------:|:------:|\n| popupRedirectURL | \"popup\" | string |\n| silentRedirectURL | \"renew\" | string |\n| responseType | \"id_token token\" | string |\n| postLogoutRedirectURL | \"\" | string |\n| checkSessionInterval | 30000 | int |\n| automaticSilentRenew | false | boolean |\n| filterProtocolClaims | true | boolean |\n| loadUserInfo | true | boolean |\n| transitionToRedirect | null | string |\n| usePopup | true | boolean |\n| useInPlaceRedirect | true | boolean |\n| transitionExceptionList | true | string[] |\n\n### to use the redirection logic instead of the default popup\nset `usePopup` to `false` and give the post login transition to execute to `transitionToRedirect`\n\noptionally set `useInPlaceRedirect` to return to the same route after login, by default the root \"/\" will be ignored from this redirection and redirect to `transitionToRedirect` instead.\n\nthis behaviour can be controlled by an exception list. every route found in `transitionExceptionList` will transition back to `transitionToRedirect`.\n\n\n### Route Initialization Configuration\n\nThe addon is able to automatically create the `renew` and `popup` routes for you. If that's what you want, simply set the `ENV.OIDC.initializeRoutes` environmnet variable to `true` in your `config/environment.js` file.\n\n### Debug Configuration\n\nIt's possible to view logging information by setting the `ENV.OIDC.enableLogging` environment variable to `true`.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbellgasp%2Fember-practical-oidc","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbellgasp%2Fember-practical-oidc","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbellgasp%2Fember-practical-oidc/lists"}