hngprojects / hng_boilerplate_php_laravel_web

Apache License 2.0
146 stars 58 forks source link

Fix: fix google auth #481

Closed tulbadex closed 2 months ago

tulbadex commented 2 months ago

Description

The database column social_id was too short to accept tokens from Google. The column size has been increased to accommodate the full length of Google tokens.

Related Issue (Link to Github issue)

Motivation and Context

The social_id column was previously defined with a size that was too short to store Google tokens. This caused errors when attempting to store tokens, resulting in issues with user authentication and registration. Increasing the column size resolves this issue and ensures compatibility with the full length of Google tokens.

Screenshots (if appropriate - Postman, etc):

Screenshot 2024-08-10 135002

How Has This Been Tested?