QCR posts endpoint - Sotera/watchman GitHub Wiki
Beta testing endpoint
http://10.104.1.144:3003/api/qcr/insert
Auth
HTTP basic auth can be enabled for the endpoint, as needed.
Example
# example uses Twitter but can be from Instagram, FB, etc. as specified in post_type
curl -X POST --header "Content-Type: application/json" --header "Accept: application/json" -d "{
\"post_id\": \"101\",
\"post_type\": \"twitter\",
\"lang\": \"en\",
\"text\": \"about cats\",
\"hashtags\": [\"cats\", \"meow\"],
\"image_urls\": [\"https://cdn.twit.com/abc.jpg\"],
\"timestamp_ms\": "1470237258000",
\"post_url\": \"http://twitter.com/1234567890\"
}" "http://10.104.1.144:3003/api/qcr/insert"
Constraints
- post_id is unique index. returns code 500 if fails.
- required: post_id, post_type, post_url, timestamp_ms. returns code 500 if invalid.
- post_type can be any unambiguous identifier.
- timestamp_ms can be epoch time (as string) or ISO date-time (as string).
Useful Information
- slc ctl env-set 1 IGNORE_QCR=0 //Turn on-off QCR pipe
- To run jobs edit the run-jobs.js file and execute it