We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4205d8d commit 54ae4afCopy full SHA for 54ae4af
packages/realtime_client/lib/src/realtime_client.dart
@@ -132,6 +132,7 @@ class RealtimeClient {
132
this.longpollerTimeout = 20000,
133
RealtimeLogLevel? logLevel,
134
this.httpClient,
135
+ this.customAccessToken,
136
}) : endPoint = Uri.parse('$endPoint/${Transports.websocket}')
137
.replace(
138
queryParameters:
packages/supabase/lib/src/supabase_client.dart
@@ -332,6 +332,7 @@ class SupabaseClient {
332
logLevel: options.logLevel,
333
httpClient: _authHttpClient,
334
timeout: options.timeout ?? RealtimeConstants.defaultTimeout,
335
+ customAccessToken: accessToken,
336
);
337
}
338
0 commit comments