Solid Auth is an implementation of Solid-OIDC flow which can be used to authenticate a client application to a Solid POD. Solid OIDC is built on top of OpenID Connect 1.0.
The authentication process works with both Android and Web based client applications. The package can also be used to create DPoP proof tokens for accessing private data inside PODs after the authentication.
This package includes the source code of two other packages, openid_client and dart_jsonwebtoken, with slight modifications done to those package files in order to be compatible with Solid-OIDC flow.
- Authenticate a client application to a Solid POD
- Create DPoP tokens for accessing data inside a POD
- Access public profile data of a POD using its WebID
To use this package add solid_auth
as a dependency in your pubspec.yaml
file. An example project that uses solid_auth
can be found here.
import 'package:solid_auth/solid_auth.dart';
import 'package:jwt_decoder/jwt_decoder.dart';
// Example WebID
String _myWebId = 'https://charlieb.solidcommunity.net/profile/card#me';
// Get issuer URI
String _issuerUri = await getIssuer(_myWebId);
// Define scopes. Also possible scopes -> webid, email, api
final List<String> _scopes = <String>[
'openid',
'profile',
'offline_access',
];
// Authentication process for the POD issuer
var authData = await authenticate(Uri.parse(_issuerUri), _scopes);
// Decode access token to recheck the WebID
String accessToken = authData['accessToken'];
Map<String, dynamic> decodedToken = JwtDecoder.decode(accessToken);
String webId = decodedToken['webid'];
import 'package:solid_auth/solid_auth.dart';
// Example WebID
String _myWebId = 'https://charlieb.solidcommunity.net/profile/card#me';
// Get issuer URI
Future<String> profilePage = await fetchProfileData(_myWebId);
import 'package:solid_auth/solid_auth.dart';
String endPointUrl; // The URL of the resource that is being requested
KeyPair rsaKeyPair; // Public/private key pair (RSA)
dynamic publicKeyJwk; // JSON web key of the public key
String httpMethod; // Http method to be used (eg: POST, PATCH)
// Generate DPoP token
String dPopToken = genDpopToken(endPointUrl, rsaKeyPair, publicKeyJwk, httpMethod);
The source code can be accessed via GitHub repository. You can also file issues you face at GitHub Issues.