From 7917f715074fb5068c72a124c8ba217a6a6124f2 Mon Sep 17 00:00:00 2001 From: Simon Date: Mon, 21 Oct 2024 21:20:23 +0700 Subject: [PATCH] Revert "intro: add curl example to add new video to download queue" This reverts commit 732d4c9a39d2012ad7a280b986cf980386d97834. --- mkdocs/docs/api/introduction.md | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/mkdocs/docs/api/introduction.md b/mkdocs/docs/api/introduction.md index 54793ca..55d295c 100644 --- a/mkdocs/docs/api/introduction.md +++ b/mkdocs/docs/api/introduction.md @@ -19,15 +19,9 @@ This page has a generic overview with how the Tube Archivist API functions. This API token will get automatically created, accessible on the settings page. Token needs to be passed as an authorization header with every request. Additionally session based authentication is enabled too: When you are logged into your TubeArchivist instance, you'll have access to the api in the browser for testing. Curl example: -```sh -token="<...>" -data='{"data":[{"youtube_id": "jNQXAC9IVRw", "status":"pending"}]}' - -curl \ -"http://tubearchive.local:80/api/download/" \ --H "Authorization: Token $token" \ --H 'Content-Type: application/json' \ ---data "$data" +```shell +curl -v /api/video// \ + -H "Authorization: Token xxxxxxxxxx" ``` Python requests example: