Registry /
communication / n8n-nodes-twitter-dynamic-auth
Install & Compatibility
Where this runs
tested against v? · npm install
Install × environment matrix
Each cell = how many times install + import succeeded across repeated harness runs. Partial = flaky.
glibc = Debian/Ubuntu slim · musl = Alpine Linux
muslnode 18–226 runs
build_error
glibcnode 18–226 runs
build_error
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
TwitterDynamicAuth
✓ import { TwitterDynamicAuth } from 'n8n-nodes-twitter-dynamic-auth'
✗ import TwitterDynamicAuth from 'n8n-nodes-twitter-dynamic-auth'
Named export of the credential class
TwitterDynamicAuthNode
✓ import { TwitterDynamicAuthNode } from 'n8n-nodes-twitter-dynamic-auth'
✗ const { TwitterDynamicAuthNode } = require('n8n-nodes-twitter-dynamic-auth')
Use named import for the node class
credentialType
✓ import { credentialType } from 'n8n-nodes-twitter-dynamic-auth'
If the package exports helper constants; check package for actual exports
Shows importing the node and setting dynamic credentials from environment variables
import { TwitterDynamicAuth, TwitterDynamicAuthNode } from 'n8n-nodes-twitter-dynamic-auth';
// Register in n8n custom nodes folder
// The node provides 4 credential fields
const credentials = {
consumerKey: process.env.TWITTER_CONSUMER_KEY || '',
consumerSecret: process.env.TWITTER_CONSUMER_SECRET || '',
accessToken: process.env.TWITTER_ACCESS_TOKEN || '',
accessSecret: process.env.TWITTER_ACCESS_SECRET || '',
};
// Use with n8n workflow
const node = new TwitterDynamicAuthNode();
node.execute({ credentials });
Errors
Common errors & fixes
Cannot find module 'n8n-nodes-twitter-dynamic-auth'
Package not installed or not linked correctly
fixRun 'npm install n8n-nodes-twitter-dynamic-auth' or 'npm link' in n8n custom nodes directory
Error: Twitter API returned 401 Unauthorized
Invalid or expired token/secret combination
fixVerify consumer key, consumer secret, access token, and access secret are correct and not expired
Audit
Dependencies
No dependency data recorded yet.