SubSonic API Wrapper

Package for interfacing with any SubSonic API compatible server.

Features

- Fetch Artists and Albums from the server

Getting started

Just add the package to your pubspec.yaml file:

dependencies:
  subsonic_api: ^0.0.4

Then import the package in your Dart code:

import 'package:subsonic_wrapper/subsonic_api.dart' as subsonic;

Usage

To use this package, you'd need to generate your authentication token and salt.

String salt = subsonic.createSalt();

String token = subsonic.createToken('password', salt);

this is the preffered way to generate the token and salt, since it doen't expose the password anywhere in the application.

Then, you need to create a SubSonicClient object with the server URL, username, token, salt, client name and version.


SubSonicClient client = SubSonicClient(
    'http(s)://server(:port)',
    'username',
    token,
    salt,
    'Client Name',
    '1.0.0'
);

After that, you can use the client to fetch data from the server.

Future<void> fetch() async {
    SubSonicResponse response = await client.getArtists();
}

Libraries

subsonic_api
A library to interact with the Subsonic API.