Skip to content

Commit 1c4fd72

Browse files
committed
Release 23.11.0
1 parent 60f714e commit 1c4fd72

File tree

34 files changed

+63
-39
lines changed

34 files changed

+63
-39
lines changed

ocr/developer-reference/auth/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Now request an access token by sending the **POST** request to `https://api.aspo
4848
{{< tabs tabID="1" tabTotal="2" tabName1="Request" tabName2="Response" >}}
4949
{{< tab tabNum="1" >}}
5050
```bash
51-
curl --location --request POST 'https://api.aspose.cloud/connect/token' \
51+
curl --request POST --location 'https://api.aspose.cloud/connect/token' \
5252
--header 'Content-Type: application/x-www-form-urlencoded' \
5353
--data-urlencode 'grant_type=client_credentials' \
5454
--data-urlencode 'client_id=CLIENT-ID-VALUE' \
@@ -73,7 +73,7 @@ The access token is returned in `access_token` property of the response JSON and
7373
To authorize your requests to Aspose.OCR Cloud API, pass the access token in **Authorization** header of each request (_Bearer authentication_):
7474

7575
```bash
76-
curl --location --request POST 'https://api.aspose.cloud/v3.0/ocr/recognize' \
76+
curl --request POST --location 'https://api.aspose.cloud/v3.0/ocr/recognize' \
7777
--header 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...l8v7jUV-mLjEdQ'
7878
```
7979

ocr/developer-reference/detect-regions/fetch-regions/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ When an image is [submitted](/ocr/send-for-detection/) for region detection, it
2626
Provide the [unique identifier](/ocr/send-for-detection/#return-value) of the region detection task in `id` parameter:
2727

2828
```bash
29-
curl --location --request GET 'https://api.aspose.cloud/v5.0/ocr/DetectRegions?id=a371d027-4b0d-4d86-8825-c8d818dd4ed9' \
29+
curl --request GET --location 'https://api.aspose.cloud/v5.0/ocr/DetectRegions?id=a371d027-4b0d-4d86-8825-c8d818dd4ed9' \
3030
--header 'Accept: text/plain' \
3131
--header 'Content-Type: application/json' \
3232
--header 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...VhKdGWxrJHdPr-OiTRL6-A' \

ocr/developer-reference/djvu-to-pdf/fetch-conversion-result/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ When a DjVu file is [submitted](/ocr/send-djvu-for-conversion/) for conversion,
2323
Provide the [unique identifier](/ocr/send-djvu-for-conversion/#return-value) of the conversion task in `id` parameter:
2424

2525
```bash
26-
curl --location --request GET 'https://api.aspose.cloud/v5.0/ocr/djvu2pdf?id=c4b60313-4f78-45f8-b708-069eb98dc22e' \
26+
curl --request GET --location 'https://api.aspose.cloud/v5.0/ocr/djvu2pdf?id=c4b60313-4f78-45f8-b708-069eb98dc22e' \
2727
--header 'Accept: text/plain' \
2828
--header 'Content-Type: application/json' \
2929
--header 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...HaRYOxBcCRCPLnrFCVXpw7UA' \

ocr/developer-reference/djvu-to-pdf/send-for-conversion/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Conversion will take a few seconds, depending on the size of the image and the c
4040
{{< tabs tabID="1" tabTotal="2" tabName1="Request" tabName2="Response" >}}
4141
{{< tab tabNum="1" >}}
4242
```bash
43-
curl --location --request POST 'https://api.aspose.cloud/v5.0/ocr/djvu2pdf' \
43+
curl --request POST --location 'https://api.aspose.cloud/v5.0/ocr/djvu2pdf' \
4444
--header 'Accept: text/plain' \
4545
--header 'Content-Type: application/json' \
4646
--header 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...HaRYOxBcCRCPLnrFCVXpw7UA' \

ocr/developer-reference/identify-fonts/fetch-recognition-result/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ When an image is [submitted](/ocr/send-image-for-font-identification/) for font
2525
Provide the [unique identifier](/ocr/send-image-for-font-identification/#return-value) of the font identification task in `id` parameter:
2626

2727
```bash
28-
curl --location --request GET 'https://api.aspose.cloud/v5.0/ocr/IdentifyFont?id=c11c975d-5124-4555-9561-af40fb95ba07' \
28+
curl --request GET --location 'https://api.aspose.cloud/v5.0/ocr/IdentifyFont?id=c11c975d-5124-4555-9561-af40fb95ba07' \
2929
--header 'Accept: text/plain' \
3030
--header 'Content-Type: application/json' \
3131
--header 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...HaRYOxBcCRCPLnrFCVXpw7UA' \

ocr/developer-reference/identify-fonts/send-for-recognition/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ Font identification will take a few seconds, depending on the size of the image
8484
{{< tabs tabID="1" tabTotal="2" tabName1="Request" tabName2="Response" >}}
8585
{{< tab tabNum="1" >}}
8686
```bash
87-
curl --location --request POST 'https://api.aspose.cloud/v5.0/ocr/IdentifyFont' \
87+
curl --request POST --location 'https://api.aspose.cloud/v5.0/ocr/IdentifyFont' \
8888
--header 'Accept: text/plain' \
8989
--header 'Content-Type: application/json' \
9090
--header 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...HaRYOxBcCRCPLnrFCVXpw7UA' \

ocr/developer-reference/preprocess-image/binarize-image/fetch-result/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ To obtain the binarized image, send a **GET** request to the `https://api.aspose
3030
Provide the [unique identifier](/ocr/send-image-for-binarization/#return-value) of the binarization task in `id` parameter:
3131

3232
```bash
33-
curl --location --request GET 'https://api.aspose.cloud/v5.0/ocr/binarizeimage?id=c4b60313-4f78-45f8-b708-069eb98dc22e' \
33+
curl --request GET --location 'https://api.aspose.cloud/v5.0/ocr/binarizeimage?id=c4b60313-4f78-45f8-b708-069eb98dc22e' \
3434
--header 'Accept: text/plain' \
3535
--header 'Content-Type: application/json' \
3636
--header 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...HaRYOxBcCRCPLnrFCVXpw7UA' \

ocr/developer-reference/preprocess-image/binarize-image/send-for-processing/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Binarization will take a few seconds, depending on the image size and the curren
4848
{{< tabs tabID="1" tabTotal="2" tabName1="Request" tabName2="Response" >}}
4949
{{< tab tabNum="1" >}}
5050
```bash
51-
curl --location --request POST 'https://api.aspose.cloud/v5.0/ocr/binarizeimage' \
51+
curl --request POST --location 'https://api.aspose.cloud/v5.0/ocr/binarizeimage' \
5252
--header 'Accept: text/plain' \
5353
--header 'Content-Type: application/json' \
5454
--header 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...HaRYOxBcCRCPLnrFCVXpw7UA' \

ocr/developer-reference/preprocess-image/correct-contrast/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ You cannot get the preprocessed image as a file.
2828
{{< tabs tabID="1" tabTotal="2" tabName1="Request" tabName2="Response" >}}
2929
{{< tab tabNum="1" >}}
3030
```bash
31-
curl --location --request POST 'https://api.aspose.cloud/v5.0/ocr/RecognizeImage' \
31+
curl --request POST --location 'https://api.aspose.cloud/v5.0/ocr/RecognizeImage' \
3232
--header 'Accept: text/plain' \
3333
--header 'Content-Type: application/json' \
3434
--header 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...HaRYOxBcCRCPLnrFCVXpw7UA' \

ocr/developer-reference/preprocess-image/deskew-image/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ To deal with such situations, you can manually specify the image rotation angle
116116
{{< tabs tabID="1" tabTotal="2" tabName1="Request" tabName2="Response" >}}
117117
{{< tab tabNum="1" >}}
118118
```bash
119-
curl --location --request POST 'https://api.aspose.cloud/v5.0/ocr/RecognizeImage' \
119+
curl --request POST --location 'https://api.aspose.cloud/v5.0/ocr/RecognizeImage' \
120120
--header 'Accept: text/plain' \
121121
--header 'Content-Type: application/json' \
122122
--header 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...HaRYOxBcCRCPLnrFCVXpw7UA' \

0 commit comments

Comments
 (0)