meegle-api-credentials

Manage Meegle API access tokens and domain for authenticated requests.

1|Updated Feb 17, 2026
One-click install
npx skills add https://github.com/pkycy/meegle-api-skill --skill meegle-api-credentials
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: meegle-api-credentials
Source: https://github.com/pkycy/meegle-api-skill/tree/main/meegle-api-credentials
Command: npx skills add https://github.com/pkycy/meegle-api-skill --skill meegle-api-credentials

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

This Skill provides a secure and standardized way to obtain the necessary credentials (plugin and user access tokens, domain) required to interact with the Meegle Open API, ensuring authenticated and authorized access.

Core Features & Use Cases

  • Credential Generation: Obtain plugin_access_token for general API access or user_access_token to act on behalf of a specific user.
  • Token Management: Supports refreshing expired user_access_token using a refresh_token.
  • Use Case: Before any Meegle API operation, use this skill to fetch a valid plugin_access_token and the correct API domain, which are then used by subsequent skills for authentication.

Quick Start

Use the meegle-api-credentials skill to obtain a plugin access token.

Frequently Asked Questions about meegle-api-credentials

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I get an access token for the Meegle API?

To get a Meegle API access token, you generate a plugin access token using your plugin ID and secret, or obtain a user access token by exchanging an authorization code. These credentials authenticate your requests to the Meegle OpenAPI.

What is the difference between a plugin access token and a user access token in Meegle?

A plugin access token provides general API access for application-level operations, while a user access token allows your application to perform Meegle OpenAPI actions on behalf of a specific authenticated user.

How do I refresh an expired Meegle user access token?

You refresh an expired Meegle user access token by submitting the corresponding refresh token to the API. This generates a new valid user access token without requiring the user to re-authenticate.

Do I need to know the API domain before calling the Meegle OpenAPI?

Yes, you need the correct API domain to route your authenticated requests. The Meegle API credentials process retrieves this domain alongside your plugin or user access tokens to ensure successful API interaction.