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
thrownewAuthorizedServiceException($"Cannot request service '{serviceAlias}' as access has not yet been authorized.");
90
+
thrownewAuthorizedServiceException($"Cannot request service '{serviceAlias}' as access has not yet been authorized (no API key is configured or stored).");
Token?token=GetAccessToken(serviceAlias)??thrownewAuthorizedServiceException($"Cannot request service '{serviceAlias}' as access has not yet been authorized.");
102
+
Token?token=GetAccessToken(serviceAlias)??thrownewAuthorizedServiceException($"Cannot request service '{serviceAlias}' as access has not yet been authorized (no access token is available).");
103
103
104
104
token=awaitEnsureAccessToken(serviceAlias,token);
105
105
@@ -126,10 +126,9 @@ public async Task<string> SendRequestRawAsync<TRequest>(string serviceAlias, str
0 commit comments