Overview
This node integrates with the "115" cloud storage service to add download tasks based on provided URLs. It allows users to submit one or multiple links for downloading and specify a target folder path within their 115 account where these files should be saved.
Common scenarios include automating batch downloads from external URLs directly into the user's 115 cloud storage, organizing downloads into specific folders, and managing download tasks programmatically within an n8n workflow.
For example, a user can input several file URLs they want to save in a particular directory on 115, and this node will create the necessary folder structure (if it doesn't exist) and add all the download tasks accordingly.
Properties
| Name | Meaning |
|---|---|
| Links to Download | One or more URLs (as a string) representing the files to be downloaded and added as tasks. This is a required field. |
| Path to Save | The folder path inside the 115 cloud storage where the downloaded files should be saved. If the folder path does not exist, it will be created automatically. |
Output
The node outputs an array of objects, each containing an info_hash property. This info_hash represents the unique identifier of each download task that was successfully added to the 115 service.
Example output JSON:
[
{
"info_hash": "somehashvalue1"
},
{
"info_hash": "somehashvalue2"
}
]
No binary data output is produced by this node.
Dependencies
- Requires an API key credential for authenticating with the 115 cloud storage service.
- The node makes HTTP requests to the 115 API endpoints to manage folders and add download tasks.
- Proper configuration of the API authentication credential in n8n is necessary for successful operation.
Troubleshooting
- API Errors: If the 115 API returns an error (e.g., invalid credentials, quota exceeded), the node throws an error with details from the API response. Ensure the API key is valid and has sufficient permissions.
- Invalid Folder Paths: If the specified "Path to Save" contains invalid characters or the API fails to create nested folders, the node may throw an error. Verify the folder path format.
- Empty or Malformed URLs: Providing empty or incorrectly formatted URLs in "Links to Download" can cause the API to reject the task creation. Make sure URLs are valid and properly separated if multiple.
- Unknown Operation: The node currently supports only the "Add Link Tasks" operation. Selecting any other operation will result in an error.
Links and References
- 115 Cloud Storage Official Website
- No public official API documentation was found in the source; users should refer to their 115 account or support for API details.