Code Monkey home page Code Monkey logo

Comments (11)

iamandreadompe avatar iamandreadompe commented on August 21, 2024 14

For me the error wars my primary key wasn't id but username,
so i had to set
protected $primaryKey = 'username';

in the model file app/Models/User.php

and everything works well

from sanctum.

driesvints avatar driesvints commented on August 21, 2024 8

Hi there,

Thanks for reporting but it looks like this is a question which can be asked on a support channel. Please only use this issue tracker for reporting bugs with the library itself. If you have a question on how to use functionality provided by this repo you can try one of the following channels:

However, this issue will not be locked and everyone is still free to discuss solutions to your problem!

Thanks.

from sanctum.

shopapps avatar shopapps commented on August 21, 2024 5

I am experiencing the same issue, could not find anything on the channels you suggested, so have created a new question on stackoverflow:

https://stackoverflow.com/questions/60562572/laravel-airlock-issue-with-creating-tokens-tokenable-id-cannot-be-null

am putting this here just in case others see the same issue and will have somewhere to look.

from sanctum.

samuelsennev avatar samuelsennev commented on August 21, 2024 2

i have this same error..

how to fix this problem dude?

In my case, I had to save the user before creating his token.

$user->save();

//then
$user->createToken("tokenName");

from sanctum.

samuelsennev avatar samuelsennev commented on August 21, 2024 1
$user->save();
$user->createToken('xxx');

I had the same issue. In my case, I forgot to save the user ($user->save()) before creating his token lol... then, worked.

from sanctum.

qiyu2580 avatar qiyu2580 commented on August 21, 2024
$user->save();
$user->createToken('xxx');

from sanctum.

Achmad-irfanda avatar Achmad-irfanda commented on August 21, 2024

i have this same error..
how to fix this problem dude?

from sanctum.

mostafa-rami-1 avatar mostafa-rami-1 commented on August 21, 2024

For me the error wars my primary key wasn't id but username, so i had to set protected $primaryKey = 'username';

in the model file app/Models/User.php

and everything works well

thanks it thats works for me

from sanctum.

NomanJaved avatar NomanJaved commented on August 21, 2024

I were also struggling with the same issue

what I were doing wrong was

I have the different table name instead of user -> tw_user

and the problem were I set the user_id as the primary key instead of id. so there were no id column present.

I rename the user_id with the id and it worked for me.

Late answer: but may be help someone else.

from sanctum.

jcfs87 avatar jcfs87 commented on August 21, 2024

i had the same error and worked with
protected $primaryKey = 'users_id';

from sanctum.

mashhoodrehman avatar mashhoodrehman commented on August 21, 2024

I had the same problem ,
if you are using selected coulmns , it will through error
Replace this
$user = User::where('email',$loginUserData['email'])
->select('name' , 'email','phone' , 'country_code','password')
->first();
to
$user = User::where('email',$loginUserData['email'])
// ->select('name' , 'email','phone' , 'country_code','password')
->first();

from sanctum.

Related Issues (20)

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.