Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PSDI Army
yii2
Commits
224fe12f
Commit
224fe12f
authored
Oct 30, 2014
by
Carsten Brandt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added disabling of loginUrl to the REST guide
issue #4198
parent
655dcba0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
rest-authentication.md
docs/guide/rest-authentication.md
+4
-2
No files found.
docs/guide/rest-authentication.md
View file @
224fe12f
...
...
@@ -25,7 +25,9 @@ Yii supports all of the above authentication methods. You can also easily create
To enable authentication for your APIs, do the following steps:
1.
Configure the
[
[yii\web\User::enableSession|enableSession
]
] property of the
`user`
application component to be false.
1.
Configure the
`user`
application component:
-
Set the
[
[yii\web\User::enableSession|enableSession
]
] property to be
`false`
.
-
Set the
[
[yii\web\User::loginUrl|loginUrl
]
] property to be
`null`
to show a HTTP 403 error instead of redirecting to the login page.
2.
Specify which authentication methods you plan to use by configuring the
`authenticator`
behavior
in your REST controller classes.
3.
Implement
[
[yii\web\IdentityInterface::findIdentityByAccessToken()
]
] in your
[
[yii\web\User::identityClass|user identity class
]
].
...
...
@@ -45,7 +47,7 @@ public function init()
}
```
For example, to use HTTP Basic Auth, you may configure
`authenticator`
as follows,
For example, to use HTTP Basic Auth, you may configure
the `authenticator` behavior
as follows,
```
php
use yii
\f
ilters
\a
uth
\H
ttpBasicAuth;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment