In Laravel api.php file found code Route::middleware('auth:api')->get('/user', function (Request $request)...
In fresh installed Laravel api.php file found code
Route::middleware('auth:api')->get('/user', function (Request $request) {
return $request->user();
});
What purpose does it have ?
I am using GET request to URL my-application/user
, no any Response, is something wrong ?
Can I delete that code ?
php laravel
add a comment |
In fresh installed Laravel api.php file found code
Route::middleware('auth:api')->get('/user', function (Request $request) {
return $request->user();
});
What purpose does it have ?
I am using GET request to URL my-application/user
, no any Response, is something wrong ?
Can I delete that code ?
php laravel
its just an example. Sure you should be able to delete without any issue. BTW your url should be /api/user
– user2749200
Nov 23 '18 at 5:07
add a comment |
In fresh installed Laravel api.php file found code
Route::middleware('auth:api')->get('/user', function (Request $request) {
return $request->user();
});
What purpose does it have ?
I am using GET request to URL my-application/user
, no any Response, is something wrong ?
Can I delete that code ?
php laravel
In fresh installed Laravel api.php file found code
Route::middleware('auth:api')->get('/user', function (Request $request) {
return $request->user();
});
What purpose does it have ?
I am using GET request to URL my-application/user
, no any Response, is something wrong ?
Can I delete that code ?
php laravel
php laravel
asked Nov 23 '18 at 4:13
a_minea_mine
1134
1134
its just an example. Sure you should be able to delete without any issue. BTW your url should be /api/user
– user2749200
Nov 23 '18 at 5:07
add a comment |
its just an example. Sure you should be able to delete without any issue. BTW your url should be /api/user
– user2749200
Nov 23 '18 at 5:07
its just an example. Sure you should be able to delete without any issue. BTW your url should be /api/user
– user2749200
Nov 23 '18 at 5:07
its just an example. Sure you should be able to delete without any issue. BTW your url should be /api/user
– user2749200
Nov 23 '18 at 5:07
add a comment |
2 Answers
2
active
oldest
votes
your-url/user
url is protected by auth:api middleware
you have to pass token with http request to access this.
in your current route it will return authenticated user model data
for more read the document from laravel passport
add a comment |
What purpose does it have ?
It is a sample route. It is to show, how to apply the authentication layer on api
routes. And, retrieve the authenticated user.
I am using GET request to URL my-application/user, no any Response, is something wrong ?
You need to consider two thing here.
All api routes are prefixed with
/api/
. So, the URL should bemy-application/api/user
https://github.com/laravel/laravel/blob/2a483bbf60566cab6fbd0340fb3877fc09889bc3/app/Providers/RouteServiceProvider.php#L68
Since
auth:api
middleware is applied, it expect a token to be presented.
If you remove the auth:api
middleware and prefix with api
, you could see a response.
Can I delete that code ?
Yes, you can delete.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53440572%2fin-laravel-api-php-file-found-code-routemiddlewareauthapi-get-user-f%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
your-url/user
url is protected by auth:api middleware
you have to pass token with http request to access this.
in your current route it will return authenticated user model data
for more read the document from laravel passport
add a comment |
your-url/user
url is protected by auth:api middleware
you have to pass token with http request to access this.
in your current route it will return authenticated user model data
for more read the document from laravel passport
add a comment |
your-url/user
url is protected by auth:api middleware
you have to pass token with http request to access this.
in your current route it will return authenticated user model data
for more read the document from laravel passport
your-url/user
url is protected by auth:api middleware
you have to pass token with http request to access this.
in your current route it will return authenticated user model data
for more read the document from laravel passport
answered Nov 23 '18 at 5:10
Emtiaz ZahidEmtiaz Zahid
1,043617
1,043617
add a comment |
add a comment |
What purpose does it have ?
It is a sample route. It is to show, how to apply the authentication layer on api
routes. And, retrieve the authenticated user.
I am using GET request to URL my-application/user, no any Response, is something wrong ?
You need to consider two thing here.
All api routes are prefixed with
/api/
. So, the URL should bemy-application/api/user
https://github.com/laravel/laravel/blob/2a483bbf60566cab6fbd0340fb3877fc09889bc3/app/Providers/RouteServiceProvider.php#L68
Since
auth:api
middleware is applied, it expect a token to be presented.
If you remove the auth:api
middleware and prefix with api
, you could see a response.
Can I delete that code ?
Yes, you can delete.
add a comment |
What purpose does it have ?
It is a sample route. It is to show, how to apply the authentication layer on api
routes. And, retrieve the authenticated user.
I am using GET request to URL my-application/user, no any Response, is something wrong ?
You need to consider two thing here.
All api routes are prefixed with
/api/
. So, the URL should bemy-application/api/user
https://github.com/laravel/laravel/blob/2a483bbf60566cab6fbd0340fb3877fc09889bc3/app/Providers/RouteServiceProvider.php#L68
Since
auth:api
middleware is applied, it expect a token to be presented.
If you remove the auth:api
middleware and prefix with api
, you could see a response.
Can I delete that code ?
Yes, you can delete.
add a comment |
What purpose does it have ?
It is a sample route. It is to show, how to apply the authentication layer on api
routes. And, retrieve the authenticated user.
I am using GET request to URL my-application/user, no any Response, is something wrong ?
You need to consider two thing here.
All api routes are prefixed with
/api/
. So, the URL should bemy-application/api/user
https://github.com/laravel/laravel/blob/2a483bbf60566cab6fbd0340fb3877fc09889bc3/app/Providers/RouteServiceProvider.php#L68
Since
auth:api
middleware is applied, it expect a token to be presented.
If you remove the auth:api
middleware and prefix with api
, you could see a response.
Can I delete that code ?
Yes, you can delete.
What purpose does it have ?
It is a sample route. It is to show, how to apply the authentication layer on api
routes. And, retrieve the authenticated user.
I am using GET request to URL my-application/user, no any Response, is something wrong ?
You need to consider two thing here.
All api routes are prefixed with
/api/
. So, the URL should bemy-application/api/user
https://github.com/laravel/laravel/blob/2a483bbf60566cab6fbd0340fb3877fc09889bc3/app/Providers/RouteServiceProvider.php#L68
Since
auth:api
middleware is applied, it expect a token to be presented.
If you remove the auth:api
middleware and prefix with api
, you could see a response.
Can I delete that code ?
Yes, you can delete.
answered Nov 23 '18 at 6:52
Ijas AmeenudeenIjas Ameenudeen
6,89732948
6,89732948
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53440572%2fin-laravel-api-php-file-found-code-routemiddlewareauthapi-get-user-f%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
its just an example. Sure you should be able to delete without any issue. BTW your url should be /api/user
– user2749200
Nov 23 '18 at 5:07