Install
openclaw skills install dataify-instagram-comment-by-posturlSubmit Dataify Instagram Post Comment by Post URL Builder tasks. Use when the user wants the Instagram post comment collection tool, collect Instagram post comments, scrape Instagram post comments, crawl Instagram comment data, collect Instagram comments by post URL, create a Dataify ins_comment_by-posturl task, or asks in Chinese with meanings like "Instagram帖子评论采集", "Instagram帖子评论抓取", "Instagram评论采集", "Instagram评论抓取", "帖子评论采集", "帖子评论抓取", "帖子URL评论采集", or similar Instagram post comment noun plus collection/scraping action wording. Also use when receiving task_id/status, configuring DATAIFY_API_TOKEN, or troubleshooting this Dataify Builder request.
openclaw skills install dataify-instagram-comment-by-posturlSubmit Instagram post comment collection jobs through Dataify Builder by post URL. After a successful submission, give the user the task_id, the returned or inferred status, and tell them to visit https://dataify.com/dashboard/ to view results.
Use DATAIFY_API_TOKEN as the long-term saved token name.
DATAIFY_API_TOKEN is already saved locally in the environment.DATAIFY_API_TOKEN is saved locally, use it without asking the user to re-enter the token.https://dataify.com/login to get one.https://dataify.com/dashboard/.DATAIFY_API_TOKEN is saved, ask whether they want to save it locally as DATAIFY_API_TOKEN for future use.API TOKEN in user-facing instructions. Prefer the environment variable name DATAIFY_API_TOKEN for saved local use.PowerShell examples for saving the token for the current session:
$env:DATAIFY_API_TOKEN = "YOUR_DATAIFY_API_TOKEN"
For a persistent user-level variable on Windows:
[Environment]::SetEnvironmentVariable("DATAIFY_API_TOKEN", "YOUR_DATAIFY_API_TOKEN", "User")
posturl values.spider_parameters objects.DATAIFY_API_TOKEN.DATAIFY_API_TOKEN.spider_id=ins_comment_by-posturl.data.task_id from the Builder response and read data.status or status when present.https://dataify.com/dashboard/ to view or manage results.When the user invokes this skill, first tell them these values are used. Always display submitted parameters as a Markdown table; do not use a plain sentence or bullet list for the parameter confirmation.
| Field | Required | Default | Location | Notes |
|---|---|---|---|---|
posturl | Yes | https://www.instagram.com/cats_of_instagram/reel/C4GLo_eLO2e/ | spider_parameters | Instagram post URL. |
file_name | No | {{TasksID}} | Builder form field | Use the default when the user does not change it. |
Then ask: "Do you want to change any of these values before I submit the task?"
Also ask: "Do you want to collect multiple Instagram post comment groups? If yes, provide multiple posturl values."
If the user has already provided some values, show those values in place of the defaults and only ask whether the remaining/defaulted values should be changed.
posturl is required. If the user does not provide it, use the default https://www.instagram.com/cats_of_instagram/reel/C4GLo_eLO2e/ only after showing it in the parameter confirmation table.posturl.posturl cannot be empty.posturl must start with https://www.instagram.com/.posturl inside spider_parameters.file_name defaults to {{TasksID}}. If the user changes it, submit the user-provided value.file_name cannot be empty.Single-group example:
spider_parameters=[{"posturl":"https://www.instagram.com/cats_of_instagram/reel/C4GLo_eLO2e/"}]
Multi-group example:
spider_parameters=[{"posturl":"https://www.instagram.com/cats_of_instagram/reel/C4GLo_eLO2e/"},{"posturl":"https://www.instagram.com/cats_of_instagram/reel/C4GLo_eLO2e/"}]
Use form fields rather than hand-built URL-encoded strings.
https://scraperapi.dataify.com/builder?platform=1POSTBearer DATAIFY_API_TOKENapplication/x-www-form-urlencodedspider_name=instagram.comspider_id=ins_comment_by-posturlspider_errors=truefile_name={{TasksID}}spider_parameters must be a JSON string array of post URL objects.For stable execution, prefer scripts/submit_dataify_instagram_comment_by_posturl.py with Python 3.6 or newer instead of rewriting the Builder flow.
python3 ".\scripts\submit_dataify_instagram_comment_by_posturl.py" --posturl "https://www.instagram.com/cats_of_instagram/reel/C4GLo_eLO2e/"
To override the saved environment token or file name:
python3 ".\scripts\submit_dataify_instagram_comment_by_posturl.py" --api-token "YOUR_DATAIFY_API_TOKEN" --posturl "https://www.instagram.com/cats_of_instagram/reel/C4GLo_eLO2e/" --file-name "{{TasksID}}"
To submit multiple post URLs:
python3 ".\scripts\submit_dataify_instagram_comment_by_posturl.py" --params-json '[{"posturl":"https://www.instagram.com/cats_of_instagram/reel/C4GLo_eLO2e/"},{"posturl":"https://www.instagram.com/cats_of_instagram/reel/C4GLo_eLO2e/"}]'
The script prints a JSON summary with spider_id, task_id, status, parameters, file_name, dashboard_url, and message.
Missing Dataify API TOKEN means no explicit token was passed and DATAIFY_API_TOKEN is not saved locally. Tell the user they need to provide their Dataify API TOKEN, ask whether they want to save it as DATAIFY_API_TOKEN, or tell them they can register or log in at https://dataify.com/login to get one. If they already have a token, tell them it is in the top-right area of https://dataify.com/dashboard/.
posturl cannot be empty means the required Instagram post URL is missing.
posturl must start with https://www.instagram.com/ means the URL is outside the allowed Instagram domain.
File name cannot be empty means no usable file_name was provided.
Necessary parameters is empty! usually means the Builder request was not submitted as form fields, spider_parameters was not a JSON string array, or one spider_parameters object is missing posturl.
Missing task_id usually means the authorization header, token, spider_name, spider_id, or spider_parameters is wrong.
file_name inside spider_parameters.https://www.instagram.com/.API TOKEN and DATAIFY_API_TOKEN when referring to authentication.https://dataify.com/dashboard/ after successful task creation.