From 45b22ea66897551594f9db761efd13a6b10690ec Mon Sep 17 00:00:00 2001 From: Florian Brinker Date: Sun, 12 Apr 2020 22:36:49 +0200 Subject: [PATCH] Update Readme --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3c111ce..6f02716 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,8 @@ You can open any new issues [here](https://git.f-brinker.de/fbrinker/docker-tikt Just add the TikTok API url (without the `&_signature=...` parameter) as a param and you will get the JSON response: ```bash -docker run --rm fbrinker/tiktok-grabber "https://m.tiktok.com/share/item/list?secUid=&id=&type=5&count=30&minCursor=0&maxCursor=0&shareUid=" +docker run --rm fbrinker/tiktok-grabber \ + "https://m.tiktok.com/share/item/list?secUid=&id=&type=5&count=30&minCursor=0&maxCursor=0&shareUid=" ``` ### Usage with a Webhook @@ -24,5 +25,7 @@ You can add a webhook as second parameter. The grabber will send the JSON result to that url as `data` attribute in a POST request: ```bash -docker run --rm fbrinker/tiktok-grabber "https://m.tiktok.com/share/item/list?secUid=&id=&type=5&count=30&minCursor=0&maxCursor=0&shareUid=" "http://example.com/webhook.php" +docker run --rm fbrinker/tiktok-grabber \ + "https://m.tiktok.com/share/item/list?secUid=&id=&type=5&count=30&minCursor=0&maxCursor=0&shareUid=" \ + "http://example.com/webhook.php" ``` \ No newline at end of file