Back to Nodes

Live.u03c4 Trigger

v0.1.3
Last updated May 26, 2026

Live.τ automation triggers for n8n

41 Weekly Downloads
613 Monthly Downloads

Included Nodes

Live.u03c4 Trigger

Description

n8n Live.τ Nodes

Community node package for Live.τ automation events.

This package is intended for self-hosted n8n.

Install

Install it in a self-hosted n8n container:

docker exec -it n8n sh
mkdir -p /home/node/.n8n/nodes
cd /home/node/.n8n/nodes
npm install n8n-nodes-live-t
exit
docker restart n8n

n8n notes:

  • Unverified community nodes are not available on n8n Cloud.
  • Docker deployments must persist ~/.n8n/nodes, otherwise installed
  • community packages can disappear when the container is recreated.

    Credentials

    Create Live.τ OAuth2 API credentials:

  • open the credential
  • use the OAuth Redirect URL that n8n shows
  • click Connect to Live.τ
  • n8n generates the OAuth callback URL for the credential. In self-hosted n8n it
    normally uses:

    https:///rest/oauth2-credential/callback
    

    Because every self-hosted instance has a different host, configure the backend
    OAuth client with a redirect URI policy instead of listing every possible
    callback:

    {
      "client_id": "live-t-n8n",
      "client_type": "public",
      "name": "n8n",
      "redirect_uris": [],
      "redirecturipolicy": {
        "type": "httpsanyhost",
        "path": "/rest/oauth2-credential/callback"
      },
      "scopes": ["automation:read", "automation:write"],
      "enabled": true
    }
    

    The node itself already knows the Live.τ API and web endpoints. Users should
    not enter backend or frontend URLs manually, and the OAuth flow uses PKCE
    instead of a distributed client secret.

    Trigger

    Use Live.τ Trigger and choose:

  • Checkpoint action
  • Field note created
  • Session lifecycle
  • Suunto workout

Session lifecycle events are passed through unchanged. The backend may include
optional coordinates as location.lat, location.lon, location.alt or under
data.location, and session.stop may include a GeoJSON URL as
data.geojson_url or links.geojson.

The backend signs webhook deliveries with x-live-t-timestamp and
x-live-t-signature; the node verifies the HMAC before emitting items.

Maintainers

Release and local-development notes live in DEVELOPMENT.md.