laravel Api Resource. Delete Request Session expired. Only Get method Working










2














Eloquent: API Resources
I am Trying to Crud a table using POSTMAN and laravel Api Resources. ]
Although using get method i can get all the data. When i use delete or post method, it returns an error of session expired.
Thanks in advance.Image Of POSTMAN



Image of routes










share|improve this question























  • Do you set auth middleware on your store method? Do you set route on web.php or in api.php?
    – train_fox
    Nov 12 '18 at 10:52










  • Sorry,i am new in coding. i was following a tutorial. youtube.com/watch?v=4pc6cgisbKE&t=1352s . and i have edited the question for image of route. Thankyou
    – Kundan Karna
    Nov 12 '18 at 11:06
















2














Eloquent: API Resources
I am Trying to Crud a table using POSTMAN and laravel Api Resources. ]
Although using get method i can get all the data. When i use delete or post method, it returns an error of session expired.
Thanks in advance.Image Of POSTMAN



Image of routes










share|improve this question























  • Do you set auth middleware on your store method? Do you set route on web.php or in api.php?
    – train_fox
    Nov 12 '18 at 10:52










  • Sorry,i am new in coding. i was following a tutorial. youtube.com/watch?v=4pc6cgisbKE&t=1352s . and i have edited the question for image of route. Thankyou
    – Kundan Karna
    Nov 12 '18 at 11:06














2












2








2


1





Eloquent: API Resources
I am Trying to Crud a table using POSTMAN and laravel Api Resources. ]
Although using get method i can get all the data. When i use delete or post method, it returns an error of session expired.
Thanks in advance.Image Of POSTMAN



Image of routes










share|improve this question















Eloquent: API Resources
I am Trying to Crud a table using POSTMAN and laravel Api Resources. ]
Although using get method i can get all the data. When i use delete or post method, it returns an error of session expired.
Thanks in advance.Image Of POSTMAN



Image of routes







laravel api resources






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 12 '18 at 11:05

























asked Nov 12 '18 at 10:46









Kundan Karna

163




163











  • Do you set auth middleware on your store method? Do you set route on web.php or in api.php?
    – train_fox
    Nov 12 '18 at 10:52










  • Sorry,i am new in coding. i was following a tutorial. youtube.com/watch?v=4pc6cgisbKE&t=1352s . and i have edited the question for image of route. Thankyou
    – Kundan Karna
    Nov 12 '18 at 11:06

















  • Do you set auth middleware on your store method? Do you set route on web.php or in api.php?
    – train_fox
    Nov 12 '18 at 10:52










  • Sorry,i am new in coding. i was following a tutorial. youtube.com/watch?v=4pc6cgisbKE&t=1352s . and i have edited the question for image of route. Thankyou
    – Kundan Karna
    Nov 12 '18 at 11:06
















Do you set auth middleware on your store method? Do you set route on web.php or in api.php?
– train_fox
Nov 12 '18 at 10:52




Do you set auth middleware on your store method? Do you set route on web.php or in api.php?
– train_fox
Nov 12 '18 at 10:52












Sorry,i am new in coding. i was following a tutorial. youtube.com/watch?v=4pc6cgisbKE&t=1352s . and i have edited the question for image of route. Thankyou
– Kundan Karna
Nov 12 '18 at 11:06





Sorry,i am new in coding. i was following a tutorial. youtube.com/watch?v=4pc6cgisbKE&t=1352s . and i have edited the question for image of route. Thankyou
– Kundan Karna
Nov 12 '18 at 11:06













2 Answers
2






active

oldest

votes


















1














Sounds like you're missing the CRSF token, which would explain why HTTP GET's are working. One option to work around this is to disable the CSRF middleware when working in your development environment. Simplest solution is to open up app/Http/Middleware/VerifyCsrfToken.php and set:



protected $except = [
'*',
];


The * is a wildcard-like option that will disable CSRF verification for all routes. Obviously ideal solution would to be to disable it on a higher level only when working on local development, but the provided answer is a quick solution.



See the Laravel documentation on CSRF Excluding URI's






share|improve this answer


















  • 1




    Thankyou for your concern and help.
    – Kundan Karna
    Nov 12 '18 at 18:14


















0














Sorry for the trouble. I found the problem,actually i was posting the routes in web.php instead of api.php . That was why i was getting the errors. Thankyou for the concern.






share|improve this answer




















  • That makes no sense, the api.php routes file is identical to that of the web.php routes file only the api middleware grouping contains additional middleware. I find it very odd that this was your issue. Edit: Additionally, I can't reproduce the error on my side by moving all my routes to the api.php file with a fresh install so I'm not sure how you came to this conclusion?
    – Stephen Lake
    Nov 12 '18 at 18:22











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
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53260524%2flaravel-api-resource-delete-request-session-expired-only-get-method-working%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









1














Sounds like you're missing the CRSF token, which would explain why HTTP GET's are working. One option to work around this is to disable the CSRF middleware when working in your development environment. Simplest solution is to open up app/Http/Middleware/VerifyCsrfToken.php and set:



protected $except = [
'*',
];


The * is a wildcard-like option that will disable CSRF verification for all routes. Obviously ideal solution would to be to disable it on a higher level only when working on local development, but the provided answer is a quick solution.



See the Laravel documentation on CSRF Excluding URI's






share|improve this answer


















  • 1




    Thankyou for your concern and help.
    – Kundan Karna
    Nov 12 '18 at 18:14















1














Sounds like you're missing the CRSF token, which would explain why HTTP GET's are working. One option to work around this is to disable the CSRF middleware when working in your development environment. Simplest solution is to open up app/Http/Middleware/VerifyCsrfToken.php and set:



protected $except = [
'*',
];


The * is a wildcard-like option that will disable CSRF verification for all routes. Obviously ideal solution would to be to disable it on a higher level only when working on local development, but the provided answer is a quick solution.



See the Laravel documentation on CSRF Excluding URI's






share|improve this answer


















  • 1




    Thankyou for your concern and help.
    – Kundan Karna
    Nov 12 '18 at 18:14













1












1








1






Sounds like you're missing the CRSF token, which would explain why HTTP GET's are working. One option to work around this is to disable the CSRF middleware when working in your development environment. Simplest solution is to open up app/Http/Middleware/VerifyCsrfToken.php and set:



protected $except = [
'*',
];


The * is a wildcard-like option that will disable CSRF verification for all routes. Obviously ideal solution would to be to disable it on a higher level only when working on local development, but the provided answer is a quick solution.



See the Laravel documentation on CSRF Excluding URI's






share|improve this answer














Sounds like you're missing the CRSF token, which would explain why HTTP GET's are working. One option to work around this is to disable the CSRF middleware when working in your development environment. Simplest solution is to open up app/Http/Middleware/VerifyCsrfToken.php and set:



protected $except = [
'*',
];


The * is a wildcard-like option that will disable CSRF verification for all routes. Obviously ideal solution would to be to disable it on a higher level only when working on local development, but the provided answer is a quick solution.



See the Laravel documentation on CSRF Excluding URI's







share|improve this answer














share|improve this answer



share|improve this answer








edited Nov 12 '18 at 11:08

























answered Nov 12 '18 at 11:03









Stephen Lake

1,07711223




1,07711223







  • 1




    Thankyou for your concern and help.
    – Kundan Karna
    Nov 12 '18 at 18:14












  • 1




    Thankyou for your concern and help.
    – Kundan Karna
    Nov 12 '18 at 18:14







1




1




Thankyou for your concern and help.
– Kundan Karna
Nov 12 '18 at 18:14




Thankyou for your concern and help.
– Kundan Karna
Nov 12 '18 at 18:14













0














Sorry for the trouble. I found the problem,actually i was posting the routes in web.php instead of api.php . That was why i was getting the errors. Thankyou for the concern.






share|improve this answer




















  • That makes no sense, the api.php routes file is identical to that of the web.php routes file only the api middleware grouping contains additional middleware. I find it very odd that this was your issue. Edit: Additionally, I can't reproduce the error on my side by moving all my routes to the api.php file with a fresh install so I'm not sure how you came to this conclusion?
    – Stephen Lake
    Nov 12 '18 at 18:22
















0














Sorry for the trouble. I found the problem,actually i was posting the routes in web.php instead of api.php . That was why i was getting the errors. Thankyou for the concern.






share|improve this answer




















  • That makes no sense, the api.php routes file is identical to that of the web.php routes file only the api middleware grouping contains additional middleware. I find it very odd that this was your issue. Edit: Additionally, I can't reproduce the error on my side by moving all my routes to the api.php file with a fresh install so I'm not sure how you came to this conclusion?
    – Stephen Lake
    Nov 12 '18 at 18:22














0












0








0






Sorry for the trouble. I found the problem,actually i was posting the routes in web.php instead of api.php . That was why i was getting the errors. Thankyou for the concern.






share|improve this answer












Sorry for the trouble. I found the problem,actually i was posting the routes in web.php instead of api.php . That was why i was getting the errors. Thankyou for the concern.







share|improve this answer












share|improve this answer



share|improve this answer










answered Nov 12 '18 at 18:13









Kundan Karna

163




163











  • That makes no sense, the api.php routes file is identical to that of the web.php routes file only the api middleware grouping contains additional middleware. I find it very odd that this was your issue. Edit: Additionally, I can't reproduce the error on my side by moving all my routes to the api.php file with a fresh install so I'm not sure how you came to this conclusion?
    – Stephen Lake
    Nov 12 '18 at 18:22

















  • That makes no sense, the api.php routes file is identical to that of the web.php routes file only the api middleware grouping contains additional middleware. I find it very odd that this was your issue. Edit: Additionally, I can't reproduce the error on my side by moving all my routes to the api.php file with a fresh install so I'm not sure how you came to this conclusion?
    – Stephen Lake
    Nov 12 '18 at 18:22
















That makes no sense, the api.php routes file is identical to that of the web.php routes file only the api middleware grouping contains additional middleware. I find it very odd that this was your issue. Edit: Additionally, I can't reproduce the error on my side by moving all my routes to the api.php file with a fresh install so I'm not sure how you came to this conclusion?
– Stephen Lake
Nov 12 '18 at 18:22





That makes no sense, the api.php routes file is identical to that of the web.php routes file only the api middleware grouping contains additional middleware. I find it very odd that this was your issue. Edit: Additionally, I can't reproduce the error on my side by moving all my routes to the api.php file with a fresh install so I'm not sure how you came to this conclusion?
– Stephen Lake
Nov 12 '18 at 18:22


















draft saved

draft discarded
















































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.





Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


Please pay close attention to the following guidance:


  • 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.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53260524%2flaravel-api-resource-delete-request-session-expired-only-get-method-working%23new-answer', 'question_page');

);

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







這個網誌中的熱門文章

Barbados

How to read a connectionString WITH PROVIDER in .NET Core?

Node.js Script on GitHub Pages or Amazon S3