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
On method Strategy.prototype.userProfile, we lost error reason because:
if(err){if(!(errinstanceofError)){returndone(newError('Failed to fetch user profile'));}returndone(newInternalOAuthError('Failed to fetch user profile',err));}
Whereas error could contain helpful information:
{"error": {
"message": "Your credentials lack one or more required privilege scopes.",
"detail": {"granted": ["webhook", "project", "team", "email"],
"required": ["account"]}}
}
The text was updated successfully, but these errors were encountered:
On method
Strategy.prototype.userProfile
, we lost error reason because:Whereas error could contain helpful information:
The text was updated successfully, but these errors were encountered: