You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Did I miss something?
Wasn't that discussion about password_client and personal_access_client token automatically having access to routes protected with the client middleware?
Right now I have the same issue as described here. Trying to scope access per client, I have multiple apps that need to access this api, but only very few need the destructive rights.
Any Client can request access to every scope it wants.
It would be nice to limit a Client to specific scopes, so it can only request access it's own pre-defined scopes.
Use Case:
We have multiple API's to read (GET) and write (PUT, POST, DELETE) data. But we don't want every Client to be able to write, only to read.
I know you can limit that with different scopes like
model:read
andmodel:write
, but every Client has the authority to request access to both scopes.The text was updated successfully, but these errors were encountered: