MySQL Insert

  • petr_cermak/mysql-insert
  • Modified
  • Users 43
  • Runs 67k
  • Created by Author's avatarPetr Cermak

This act takes a crawler execution and inserts it's results into a remote MySQL database.

To run the code examples, you need to have an Apify account. Replace <YOUR_API_TOKEN> in the code with your API token. For a more detailed explanation, please read about running Actors via the API in Apify Docs.

# Set API token
API_TOKEN=<YOUR_API_TOKEN>

# Prepare Actor input
cat > input.json <<'EOF'
{
  "connection": {},
  "proxyConfig": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "qfCaFFuCodXxAS59E"
    ]
  },
  "rows": [],
  "staticParam": {}
}
EOF

# Run the Actor
curl "https://api.apify.com/v2/acts/petr_cermak~mysql-insert/runs?token=$API_TOKEN" \
  -X POST \
  -d @input.json \
  -H 'Content-Type: application/json'