GithubHelp home page GithubHelp logo

Comments (4)

Tony133 avatar Tony133 commented on June 2, 2024

Hi, I'm glad this example has been useful to you and thank you for your compliments.

For authentication you go to base64 on README did not put it, but I put only what you have to put in order to do the basic authentication say that I thought the one who does the basic authentication knows that it is in base64. :-)

tony133

from laravel-api-rest.

bewithdhanu avatar bewithdhanu commented on June 2, 2024

image
I have added a new record in the users' table.
when I run this http://localhost/LaravelApiRest/public/api/books it is asking for username and password like this
image

but it's always resulting invalid credentials
How to login to this

from laravel-api-rest.

Tony133 avatar Tony133 commented on June 2, 2024

Hello, use the email instead of the username. If you want to use the username just modify the middleware route by replacing the laravel default in this i created:

Route::group(['middleware' => 'auth.basic.username'], function () {
    Route::get('/api/books', 'BookController@index');
    Route::get('/api/books/{id}', 'BookController@show');
    Route::post('/api/books', 'BookController@store');
    Route::put('/api/books/{id}', 'BookController@update');
    Route::delete('/api/books/{id}', 'BookController@destroy');
});

ok?

Tony133

from laravel-api-rest.

michielauerbach avatar michielauerbach commented on June 2, 2024

from laravel-api-rest.

Related Issues (10)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.