Actions29
- Posts Actions
- Comments Actions
- Users Actions
- Search Actions
Overview
This node integrates with the Sina Weibo API to perform various operations related to posts, comments, users, and search functionalities on the Weibo platform. Specifically, for the Posts resource and the Get Reposts operation, it retrieves a list of reposts (shares) of a specified post.
Use cases include:
- Monitoring how many times and by whom a particular post has been reposted.
- Analyzing the spread and engagement of content on Weibo.
- Building dashboards or reports that track repost activity for marketing or social media management purposes.
Example: Given a Post ID, you can fetch the reposts of that post, optionally paginating through results by specifying count and page number.
Properties
| Name | Meaning |
|---|---|
| Post ID | The unique identifier of the post for which to retrieve reposts. |
| Count | Number of repost items to return per request (pagination size). |
| Page | Page number of the repost results to retrieve (for pagination). |
Output
The output is an array of JSON objects representing reposts of the specified post. Each item corresponds to one repost entry returned by the Sina Weibo API via the intermediary service.
- The
jsonfield contains the repost data as received from the API. - The structure typically includes details about each repost such as user info, repost text, timestamps, and other metadata.
- No binary data output is produced by this operation.
Dependencies
- Requires access to the Sina Weibo API, facilitated through an intermediary API service ("N8N Tools API").
- Requires an API key credential for the intermediary service to validate subscription and authenticate requests.
- The node uses HTTP POST requests to the intermediary API endpoint to validate credentials before making Weibo API calls.
- Proper configuration of the API key credential in n8n is necessary for successful execution.
Troubleshooting
- Invalid subscription or API key error: If the node throws an error indicating invalid subscription or API key, verify that the API key credential is correctly configured and active.
- Unknown operation error: This occurs if an unsupported operation name is used; ensure "getReposts" is selected under Posts resource.
- Pagination issues: If no reposts are returned, check that the Post ID is correct and that the count/page parameters are within valid ranges.
- Network or API errors: These may occur due to connectivity issues or Weibo API rate limits; retry after some time or check network settings.