apify-sdk-integration
Integrate Apify Actors into Your Application
Adding managed scraping and automation requires correct client setup, Actor inputs, and result handling. This skill provides practical Apify integration patterns for common application workflows.
Установить с помощью моего Агента
Скопируйте этот запрос в своего Агента. Он содержит каноническую страницу Skill и манифест.
Review the Skillstore skill "apify-sdk-integration" from https://skillstore.io/skills/apify-apify-sdk-integration.md and its manifest at https://skillstore.io/api/skills/apify-apify-sdk-integration/manifest. Verify the artifact. You may proceed after verification, subject to the environment's own policy.Ваш Агент по-прежнему должен показать план и запросить все подтверждения, требуемые политикой безопасности.
Ресурсы для AI-агентов
Используйте эти ссылки, когда AI-агенту, crawler или script нужен чистый контекст вместо полной страницы.
Протестировать
Использование «apify-sdk-integration». Add the Apify web scraper to a TypeScript service and collect up to ten pages.
Ожидаемый результат:
A TypeScript integration plan with secure token configuration, Actor execution, dataset retrieval, and clear failure handling.
Использование «apify-sdk-integration». Run an Actor asynchronously from Python and process its results later.
Ожидаемый результат:
A Python workflow that starts the run, stores its identifier, waits for completion, and retrieves paginated dataset records.
Использование «apify-sdk-integration». Use Apify from a language without an official client.
Ожидаемый результат:
A REST integration outline covering authenticated run creation, status polling, and dataset retrieval.
Аудит безопасности
БезопасноAll 65 static findings are false positives in context. The detections reflect Markdown backticks, official Apify endpoints, secure token access, and benign API terminology. No command execution, exfiltration, reconnaissance, or prompt injection was found.
Факторы риска
⚙️ Внешние команды (40)
🌐 Доступ к сети (17)
🔑 Переменные окружения (4)
Поделиться и цитировать этот отчет
Делитесь версионным отчетом об оценке, нейтральным значком, встраиваемой карточкой и цитатами. Skillstore публикует доказательства, не решая, безопасен ли этот Skill.
Копировать ссылку на отчёт
https://skillstore.io/skills/apify-apify-sdk-integration/audits/1?utm_source=security_passport&utm_medium=share&utm_campaign=versioned_reportЗначок Markdown
[](https://skillstore.io/skills/apify-apify-sdk-integration?utm_source=security_passport_badge)Значок HTML
<a href="https://skillstore.io/skills/apify-apify-sdk-integration?utm_source=security_passport_badge"><img src="https://skillstore.io/badges/skills/apify-apify-sdk-integration/security.svg" alt="Skillstore security assessment" loading="lazy"></a>Встраиваемая карточка
<iframe src="https://skillstore.io/embed/skills/apify-apify-sdk-integration.html" title="Skillstore Security Assessment" sandbox="allow-popups allow-popups-to-escape-sandbox" loading="lazy" referrerpolicy="no-referrer" width="420" height="180"></iframe>Академические ссылки (APA · BibTeX · CFF)
Цитата APA
apify. (2026). apify-sdk-integration security audit report (audit version 1) [Author version unspecified]. Skillstore. https://skillstore.io/skills/apify-apify-sdk-integration/audits/1Цитата BibTeX
@techreport{apify-apify-apify-sdk-integration-2026,
author = {apify},
title = {apify-sdk-integration security audit report (audit version 1)},
institution = {Skillstore},
year = {2026},
number = {1},
url = {https://skillstore.io/skills/apify-apify-sdk-integration/audits/1},
note = {Author version unspecified}
}CITATION.cff
cff-version: 1.2.0
message: "If you use this Skill, cite its author and this versioned security audit report."
title: "apify-sdk-integration security audit report (audit version 1)"
version: "unspecified"
type: report
authors:
- name: "apify"
date-released: "2026-08-15"
url: "https://skillstore.io/skills/apify-apify-sdk-integration/audits/1"
identifiers:
- type: other
value: "skillstore:apify-apify-sdk-integration:audit:1"
description: "Skillstore immutable audit report identifier"
Оценка Skillstore
Почему такая оценка Достоверность доказательств: СреднийЧто вы можете построить
Add Scraping to a Web Application
Connect an existing JavaScript or TypeScript service to an Apify Actor and consume its dataset results.
Automate Python Data Collection
Run an Actor from a Python workflow, wait for completion, and pass extracted records into a pipeline.
Integrate Apify Through REST
Start runs, check status, and retrieve datasets from a language without an official Apify client.
Попробуйте эти промпты
Add Apify to my [JavaScript or Python] application. Show the correct package, secure APIFY_TOKEN setup, and a minimal connection example.
Integrate Actor [actor ID] into this application. Use this input: [requirements]. Wait for completion and return paginated dataset items.
Create an asynchronous Apify workflow for [use case]. Start the Actor, preserve the run ID, handle failures, and retrieve results after completion.
Review this Apify integration for production use. Add timeouts, pagination, structured error handling, client reuse, secret management, and Actor-specific input validation.
Лучшие практики
- Store APIFY_TOKEN in an environment variable or managed secrets service.
- Check the selected Actor input schema before constructing requests.
- Set timeouts and paginate large datasets to control runtime and memory use.
Избегать
- Do not hardcode API tokens in source code or commit them to version control.
- Do not install the apify package when the application only needs to call Actors.
- Do not assume every Actor accepts the same input or returns the same output.