upload_image
Upload an image (local file or base64) to TapTap server and retrieve its URL for use in app info updates like icons, banners, or screenshots.
Instructions
Upload an image to TapTap server and get a URL. Use this to upload icon, banner, or screenshots before calling update_app_info. Accepts either a local file path or base64 encoded image data.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| filePath | No | Local file path to the image (relative to workspace or absolute). Supports JPG, PNG, GIF, WebP. | |
| filename | No | Optional filename for the uploaded image. If not provided, will be derived from filePath or default to "image.png". | |
| base64Data | No | Base64 encoded image data. Can include data URL prefix (e.g., "data:image/png;base64,...") or be raw base64 string. |