Skip to content

Support for iframe authentication #118

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 20 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
50481ed
Make library work in iframes, not just in popup windows
uifox Apr 3, 2018
cd54aed
Preparation for npm publish: Updated build output
uifox Apr 3, 2018
62d6d9d
Preparation for npm publish: Updated package.json and README
uifox Apr 3, 2018
9dc7073
Merge pull request #1 from bsarvari/iframe-authentication
bsarvari Apr 3, 2018
8e91206
Rename module such that it can be published to public npm repo indepe…
uifox Apr 3, 2018
0aaf58b
Remove iframe target DOM node from document if authContextOptions has…
uifox Apr 3, 2018
695f725
Dist files
uifox Apr 3, 2018
91ed0f0
Increase package version
uifox Apr 3, 2018
2c23461
Increase package version + updated dist artifacts
uifox Apr 3, 2018
3176620
A safer way to get full URL path: this fixes the problem on older ver…
uifox Apr 13, 2018
0f46d18
Let the authentication timeout if the remote service never redirects …
uifox Apr 13, 2018
1794e66
Increase package version + updated dist artifacts
uifox Apr 13, 2018
8a19fe0
Merge pull request #2 from bsarvari/enhancements
uifox Apr 13, 2018
bc3549c
fix stale iframe.contentWindow reference problem in Edge
uifox Apr 16, 2018
9ec97aa
Increase module version + dist resources
uifox Apr 16, 2018
e948bfe
Merge pull request #3 from bsarvari/fix-iframe-auth-edge
uifox Apr 16, 2018
1861bf2
When IE11 converted the redirect URL string using a URI parser it add…
uifox May 10, 2018
55c2421
ASH-54: a less error-prone way to getFullUrlPath (to please both IE11…
uifox May 11, 2018
c1270f4
ASH-54: generated artifacts
uifox May 11, 2018
e064148
Merge pull request #4 from bsarvari/defect/IE11-string-comparison
uifox May 14, 2018
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ The best part about this library is that it is not strictly coupled to one reque

For now it is tested to work with [vue-resource](https://github.com/pagekit/vue-resource) and [axios](https://github.com/mzabriskie/axios) (using [vue-axios](https://github.com/imcvampire/vue-axios) wrapper).

This library supports authentication in popup windows and iframes.

**WARNING:** From version 1.3.0 default request library is `axios` using `vue-axios` wrapper plugin.

This library was inspired by well known authentication library for Angular called [Satellizer](https://github.com/sahat/satellizer) developed by [Sahat Yalkabov](http://sahatyalkabov.com). They share almost identical configuration and API so you can easily switch from Angular to Vue.js project.
Expand Down
Loading