패널 운영자용: 연결된 공급업체에서 최신 서비스와 가격을 로컬 카탈로그로 가져옵니다. 관리자 키가 필요합니다:
socialgo admin sync-catalog
세 명령 루프
서비스를 찾고, 주문을 넣고, 추적하세요. 모든 스크립트와 에이전트가 실행하는 루프입니다:
# 1. find the service id
socialgo services search "instagram followers"
# 2. place the order
socialgo order create --service 1423 --link https://instagram.com/yourhandle --quantity 1000
# 3. track it
socialgo order status 90871
처음부터 끝까지 스크립트로
어떤 명령에든 --json을 전달해 jq로 파이프하세요. 여기서는 스크립트가 가장 저렴한 일치 서비스를 고른 뒤 주문합니다. 클릭 없이:
# pick the cheapest matching service, then order — with jq
id=$(socialgo services search "instagram followers" --json \
| jq -r 'sort_by(.rate) | .[0].id')
socialgo order create --service "$id" \
--link https://instagram.com/yourhandle --quantity 1000 --json
종료 코드 & JSON
모든 명령은 성공 시 0, 실패 시 비0 코드를 반환하므로, CI 파이프라인과 셸 스크립트에서 호출을 연결할 수 있습니다. 어떤 명령에든 --json을 전달하면 jq 같은 도구로 파이프하거나 에이전트에 바로 되먹일 수 있는 기계 판독 출력을 얻습니다.