146 | | On a side note, I served this Google SDK code with "webpack-dev-server"(https://github.com/webpack/webpack-dev-server) without using Django rendering, and it works fine. |
| 152 | On a side note, I compared the request and response from Google Auth Server between Django 3.x and 4.x. and there was no difference. |
| 153 | So, I think Google Auth Server has no problem with regard to this issue but Google Client library(https://accounts.google.com/gsi/client) served by Django does have an issue. |
| 154 | |
| 155 | (Response from Google Auth Server on Django 3.2.14) |
| 156 | {{{ |
| 157 | [[["gf.sisr",6,null,null,null,null,null,["gf.cr",4,null,null,[4,null,null,null,["{\n \"access_token\" : \"ya29.A0AVA9y1sCNWa5H1iHI3Ebjjo4OGX551lV1...63\",\n \"token_type\" : \"Bearer\",\n \"expires_in\" : 3598,\n \"scope\" : \"email profile openid https://www.googleapis.com/auth/calendar.readonly https://www.googleapis.com/auth/userinfo.profile https://www.googleapis.com/auth/contacts.readonly https://www.googleapis.com/auth/userinfo.email\",\n \"authuser\" : \"0\",\n \"hd\" : \"test.com\",\n \"prompt\" : \"none\"\n}","753749545716-dg8sl....apps.googleusercontent.com","auth712297","http://localhost:8000",null,1]],null,null,[]]],["gf.ttu",1],["e",3,null,null,891]]] |
| 158 | }}} |
| 159 | |
| 160 | (Response from Google Auth Server on Django 4.0.6) |
| 161 | {{{ |
| 162 | [[["gf.sisr",6,null,null,null,null,null,["gf.cr",4,null,null,[4,null,null,null,["{\n \"access_token\" : \"ya29.A0AVA9y1viWoIqts1eK57kJEEOXKK2NJrW86O99FPmmLRabPVkceigfo5B5xa-RDfIuEdymAyJz52I4udUU...Wp1ZHI4a19BY0t3MDVZQ3U0UEhkeUdHVDBLUQ0163\",\n \"token_type\" : \"Bearer\",\n \"expires_in\" : 3599,\n \"scope\" : \"email profile https://www.googleapis.com/auth/calendar.readonly https://www.googleapis.com/auth/userinfo.profile https://www.googleapis.com/auth/userinfo.email openid https://www.googleapis.com/auth/contacts.readonly\",\n \"authuser\" : \"0\",\n \"hd\" : \"test.com\",\n \"prompt\" : \"none\"\n}","753749545716-dg....apps.googleusercontent.com","auth717087","http://localhost:8000",null,1]],null,null,[]]],["gf.ttu",1],["e",3,null,null,891]] |
| 163 | }}} |
| 164 | |
| 165 | \\ |
| 166 | |
| 167 | Plus, I tried testing this Google SDK code with "webpack-dev-server"([https://github.com/webpack/webpack-dev-server](https://github.com/webpack/webpack-dev-server)) without using Django rendering, and it works fine. |