Accidentally changed grant types because google is weird

This commit is contained in:
NovaFox161
2021-06-16 23:55:28 -05:00
parent 6b23e6cc6d
commit f194dbf2c1

View File

@@ -68,7 +68,7 @@ object GoogleAuth {
.addEncoded("client_id", Authorization.getAuth().clientData.clientId)
.addEncoded("client_secret", Authorization.getAuth().clientData.clientSecret)
.addEncoded("code", poll.deviceCode)
.addEncoded("grant_type", "https://oauth.net/grant_type/device/1.0")
.addEncoded("grant_type", "http://oauth.net/grant_type/device/1.0")
.build()
val httpRequest = Request.Builder()