@vin87426/n8n-nodes-plurk
v0.1.6
Published
n8n community node for Plurk API 2.0 endpoints.
Maintainers
Readme
n8n-nodes-plurk
This package provides an n8n community node for Plurk API 2.0. It lets workflows read timelines, publish plurks, manage responses, search Plurk, upload photos, and call other Plurk API resources from one Plurk integration.
Features
- Plurk API 2.0 resources and operations grouped by API category
- OAuth 1.0a request signing for Plurk API requests
- Support for three-legged OAuth operations that require user access tokens
- Support for two-legged OAuth operations that only require a consumer key and consumer secret
- Binary upload support for Plurk API endpoints that accept files
- Usable as an n8n AI tool
Installation
Install this package from n8n's Community Nodes settings:
@vin87426/n8n-nodes-plurkAfter installation, add the Plurk node to a workflow and select the resource, operation, and credentials you want to use.
Credentials
The node uses the Plurk OAuth1 API credential type.
| n8n field | Plurk OAuth value | Purpose |
| -------------------- | ------------------------- | ----------------------------------- |
| Consumer Key | Plurk app consumer key | Identifies your Plurk app |
| Consumer Secret | Plurk app consumer secret | Signs OAuth requests |
| OAuth Token | User access token key | Authorizes requests as a Plurk user |
| OAuth Token Secret | User access token secret | Signs user-authorized requests |
Most Plurk API endpoints use three-legged OAuth and require all four fields. Some public or utility endpoints use two-legged OAuth and only require Consumer Key and Consumer Secret. If you are unsure, configure all four fields.
Get a Consumer Key and Consumer Secret
- Sign in to Plurk.
- Open the Plurk app creation page.
- Create a Plurk app.
- Copy the app's consumer key and consumer secret.
- In n8n, create a
Plurk OAuth1 APIcredential. - Paste the values into
Consumer KeyandConsumer Secret.
Get an OAuth Token and OAuth Token Secret
Plurk uses OAuth 1.0a. For automation and bot workflows, the simplest way to get permanent access tokens is Plurk's official test console.
- Make sure you already have a Plurk app consumer key and consumer secret.
- Open the Plurk OAuth test console.
- Enter your consumer key and consumer secret.
- Authorize the Plurk app when prompted.
- Copy the generated
oauth_tokenandoauth_token_secret. - Paste them into
OAuth TokenandOAuth Token Secretin the n8n credential. - Save the credential and select it in the
Plurknode.
Keep Consumer Secret and OAuth Token Secret private. They allow workflows to call Plurk as the authorized account.
Basic Usage
- Add a
Plurknode to an n8n workflow. - Select a
Plurk OAuth1 APIcredential. - Select a resource, such as
Timeline,Responses,Users, orSearch. - Select an operation.
- Fill in the operation parameters.
- Execute the workflow.
Example Workflows
Publish a Plurk
- Add a manual trigger.
- Add a
Plurknode. - Set
ResourcetoTimeline. - Set
OperationtoPlurk Add. - Enter
Contentand choose aQualifier. - Run the workflow to publish the plurk.
Search Plurk
- Add a manual trigger.
- Add a
Plurknode. - Set
ResourcetoSearch. - Set
OperationtoSearch. - Enter a search query and optional offset.
- Use the returned items in later workflow steps.
Upload a Photo
- Add a node that provides binary data, such as an HTTP Request node or another binary-producing node.
- Add a
Plurknode. - Select the photo upload operation.
- Set
Binary Propertyto the binary property name from the previous node. - Execute the workflow.
Available Resources
The node currently exposes these Plurk API resource groups:
- Alerts
- Blocks
- Bookmarks
- Cliques
- Emoticons
- Friends/Fans
- OAuth Utilities
- Photos
- Polling
- Premium
- Profile
- Realtime
- Responses
- Search
- Timeline
- Users
The exact operation list is available in the node's Operation field and in docs/plurk-api-2.0.md.
Development
npm install
npm run lint
npm run buildDuring development, run:
npm run devRun the complete local check with:
npm run checkRun n8n's community package scanner with:
npx @n8n/scan-community-package @vin87426/n8n-nodes-plurkPublishing and n8n Verification
This project publishes through GitHub Actions with npm provenance, which is required for n8n community node verification from May 1, 2026.
Configure npm Trusted Publishing for this GitHub repository and
.github/workflows/publish.yml, or configure theNPM_TOKENGitHub Actions secret as a fallback.Run the release process locally:
npm run releaseThe release process updates the changelog, creates a version commit, creates a version tag, and pushes the tag.
GitHub Actions publishes the package to npm with provenance.
After npm shows provenance for the new package version, submit the package to the n8n Creator Portal for verification.
References
- Plurk API 2.0 summary
- Plurk app creation page
- Plurk OAuth test console
- n8n Community Nodes documentation
License
MIT
