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
Passport returns SQL-query error message when you request access token (aouth/token) with grant_type:password and use valid credentials (client_secret, username, password, scopes) with client_id that contains non numeric character (ie. 123A). Should be minor problem as you need to have all other credentials correct to reproduce the error.
Error message: SQLSTATE[01000]: Warning: 1265 Data truncated for column 'client_id' at row 1 (SQL: insert into 'oauth_access_tokens' ('id', 'user_id', 'client_id', 'scopes', 'revoked', 'created_at', 'updated_at', 'expires_at') values (57abbf96384a122df3f4a..., 1, 123A, [], 0, 2017-01-19 10:27:56, 2017-01-19 10:27:56, 2017-01-20 10:27:56))
The text was updated successfully, but these errors were encountered:
Passport returns SQL-query error message when you request access token (aouth/token) with grant_type:password and use valid credentials (client_secret, username, password, scopes) with client_id that contains non numeric character (ie. 123A). Should be minor problem as you need to have all other credentials correct to reproduce the error.
Error message:
SQLSTATE[01000]: Warning: 1265 Data truncated for column 'client_id' at row 1 (SQL: insert into 'oauth_access_tokens' ('id', 'user_id', 'client_id', 'scopes', 'revoked', 'created_at', 'updated_at', 'expires_at') values (57abbf96384a122df3f4a..., 1, 123A, [], 0, 2017-01-19 10:27:56, 2017-01-19 10:27:56, 2017-01-20 10:27:56))
The text was updated successfully, but these errors were encountered: