This is a Flutter SDK written in pure dart that is responsible for maintaining a SuperTokens session for a Flutter app.
Learn more at https://supertokens.com
import 'package:supertokens_flutter/supertokens.dart';
// Initialise the SDK on app launch
void main() {
SuperTokens.init(apiDomain: "http://localhost:3001");
}
import 'package:supertokens_flutter/supertokens.dart';
Future<bool> doesSessionExist() async {
return await SuperTokens.doesSessionExist();
}
You can make requests as you normally would with http
, the only difference is that you import the client from the supertokens package instead.
// Import http from the SuperTokens package
import 'package:supertokens_flutter/http.dart' as http;
Future<void> makeRequest() {
Uri uri = Uri.parse("http://localhost:3001/api");
var response = await http.get(uri);
// handle response
}
The SuperTokens SDK will handle session expiry and automatic refreshing for you. When calling authentication APIs such as signin or signup, the SDK automatically captures the access- and refresh tokens from the headers and saves them for you.
If you use a custom http client and want to use SuperTokens, you can simply provide the SDK with your client. All requests will continue to use your client along with the session logic that SuperTokens provides.
// Import http from the SuperTokens package
import 'package:supertokens_flutter/http.dart' as http;
Future<void> makeRequest() {
Uri uri = Uri.parse("http://localhost:3001/api");
// provide your custom client to SuperTokens
var httpClient = http.Client(client: customClient)
var response = await httpClient.get(uri);
// handle response
}
You can make requests as you normally would with dio
.
import 'package:supertokens_flutter/dio.dart';
void setup() {
Dio dio = Dio(...)
dio.interceptors.add(SuperTokensInterceptorWrapper(client: dio));
}
Or use instance method instead.
import 'package:supertokens_flutter/dio.dart';
void setup() {
Dio dio = Dio(); // Create a Dio instance.
dio.addSupertokensInterceptor();
}
import 'package:supertokens_flutter/dio.dart';
void setup() {
Dio dio = Dio(...)
dio.interceptors.add(SuperTokensInterceptorWrapper(client: dio));
var response = dio.get("http://localhost:3001/api");
// handle response
}
import 'package:supertokens_flutter/supertokens.dart';
Future<void> signOut() async {
await SuperTokens.signOut();
}
import 'package:supertokens_flutter/supertokens.dart';
Future<String> getUserId() async {
return await SuperTokens.getUserId();
}
import 'package:supertokens_flutter/supertokens.dart';
Future<void> manualRefresh() async {
// Returns true if session was refreshed, false if session is expired
var success = await SuperTokens.attemptRefreshingSession();
}
Please refer to the CONTRIBUTING.md file in this repo.
For any queries, or support requests, please email us at team@supertokens.com, or join our Discord server.
Created with ❤️ by the folks at SuperTokens.com.