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
GMListenError: "Error polling messages from Google Messages server, the bridge will try to reconnect",
45
-
GMFatalError: "Fatal error polling messages from Google Messages server, please re-link the bridge",
47
+
GMFatalError: "Fatal error polling messages from Google Messages server",
48
+
GMConnectionFailed: "Failed to connect to Google Messages",
46
49
GMNotLoggedIn: "Unpaired from Google Messages, please re-link the connection to continue using SMS/RCS",
47
50
GMUnpaired: "Unpaired from Google Messages, please re-link the connection to continue using SMS/RCS",
48
51
GMUnpaired404: "Unpaired from Google Messages, please re-link the connection to continue using SMS/RCS",
52
+
GMUnpaired401: "Unpaired from Google Messages, please re-link the connection to continue using SMS/RCS",
53
+
GMUnpairedInvalidCreds: "Unpaired from Google Messages, please re-link the connection to continue using SMS/RCS",
49
54
GMUnpairedGaia: "Unpaired from Google Messages, please re-link the connection to continue using SMS/RCS",
50
55
GMNotDefaultSMSApp: "Google Messages isn't set as the default SMS app. Please set the default SMS app on your Android phone to Google Messages to continue using SMS/RCS.",
51
56
GMBrowserInactive: "Google Messages opened in another browser",
Copy file name to clipboardexpand all lines: pkg/libgm/events/ready.go
+7
Original file line number
Diff line number
Diff line change
@@ -34,6 +34,13 @@ var ErrRequestedEntityNotFound = RequestError{
34
34
},
35
35
}
36
36
37
+
varErrInvalidCredentials=RequestError{
38
+
Data: &gmproto.ErrorResponse{
39
+
Type: 16,
40
+
Message: "Request had invalid authentication credentials. Expected OAuth 2 access token, login cookie or other valid authentication credential. See https://developers.google.com/identity/sign-in/web/devconsole-project.",
0 commit comments