Install
openclaw skills install @dataify-server/dataify-facebook-profile-by-urlCollect Facebook Profile By URL data and return results
openclaw skills install @dataify-server/dataify-facebook-profile-by-urlSubmit Facebook personal profile collection jobs through Dataify Builder by profile URL. After submission, continue monitoring the returned task_id and return the final result by default.
Use DATAIFY_API_TOKEN as the long-term saved token name.
DATAIFY_API_TOKEN is saved locally, use it without asking the user to re-enter the token.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")
url values.spider_parameters objects.spider_id=facebook_profile_by-profiles-url.data.task_id from the Builder response and read data.status or status when present.| Field | Required | Default | Location | Notes |
|---|---|---|---|---|
url | Yes | https://www.facebook.com/MayeMusk | spider_parameters | Facebook personal profile URL. |
file_name | No | {{TasksID}} | Builder form field | Use the default when the user does not change it. |
Also ask: "Do you want to collect multiple Facebook personal profiles? If yes, provide multiple url 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.
url.url cannot be empty.url must start with https://www.facebook.com/.url 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=[{"url":"https://www.facebook.com/MayeMusk"}]
Multi-group example:
spider_parameters=[{"url":"https://www.facebook.com/MayeMusk"},{"url":"https://www.facebook.com/MayeMusk"}]
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=facebook.comspider_id=facebook_profile_by-profiles-urlspider_errors=truefile_name={{TasksID}}spider_parameters must be a JSON string array of URL objects.For stable execution, prefer scripts/submit_dataify_facebook_profile_by_url.py with Python 3.6 or newer instead of rewriting the Builder flow.
python3 ".\scripts\submit_dataify_facebook_profile_by_url.py" --url "https://www.facebook.com/MayeMusk"
To override the saved environment token or file name:
python3 ".\scripts\submit_dataify_facebook_profile_by_url.py" --url "https://www.facebook.com/MayeMusk" --file-name "{{TasksID}}"
To submit multiple URLs:
python3 ".\scripts\submit_dataify_facebook_profile_by_url.py" --params-json '[{"url":"https://www.facebook.com/MayeMusk"},{"url":"https://www.facebook.com/MayeMusk"}]'
The script prints a JSON summary with spider_id, task_id, status, parameters, file_name and message.
url cannot be empty means the required Facebook profile URL is missing.
url must start with https://www.facebook.com/ means the URL is outside the allowed Facebook 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 url.
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.facebook.com/.API TOKEN and DATAIFY_API_TOKEN when referring to authentication.The default deliverable is the collected result, not only a task_id.
task_id.$dataify-task-operations and monitor the same task ID.
--timeout 1800 for media downloads or clearly high-volume, multi-page, or multi-input collections.--no-wait behavior.python3 scripts/submit_dataify_facebook_profile_by_url.py --help
export for macOS/Linux shells, $env: for Windows PowerShell, or set for Windows Command Prompt). Show other platforms or persistent setup only when detection is ambiguous or the user asks.DATAIFY_API_TOKEN is present; never print its value. If verification succeeds, continue the original task without asking the user to repeat it..env unless the execution path explicitly loads it, and ensure .env is ignored by version control.