Skip to content

Release 25.7 #74

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 24, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
[![GitHub tag (latest SemVer)](https://img.shields.io/github/v/tag/aspose-barcode-cloud/aspose-barcode-cloud-go?label=module&sort=semver)](https://pkg.go.dev/github.com/aspose-barcode-cloud/aspose-barcode-cloud-go)

- API version: 4.0
- SDK version: 4.2506.0
- SDK version: 4.2507.0

## SDK and API Version Compatibility:

Expand Down Expand Up @@ -38,7 +38,7 @@ To use Aspose.BarCode Cloud SDK for Go you need to register an account with [Asp
1. Run `go get` command

```shell script
go get -u github.com/aspose-barcode-cloud/aspose-barcode-cloud-go/v4@v4.2506.0
go get -u github.com/aspose-barcode-cloud/aspose-barcode-cloud-go/v4@v4.2507.0
```

## Sample usage
Expand Down Expand Up @@ -186,10 +186,10 @@ Class | Method | HTTP request | Description
*GenerateAPI* | [**Generate**](docs/GenerateAPI.md#generate) | **Get** /barcode/generate/{barcodeType} | Generate barcode using GET request with parameters in route and query string.
*GenerateAPI* | [**GenerateBody**](docs/GenerateAPI.md#generatebody) | **Post** /barcode/generate-body | Generate barcode using POST request with parameters in body in json or xml format.
*GenerateAPI* | [**GenerateMultipart**](docs/GenerateAPI.md#generatemultipart) | **Post** /barcode/generate-multipart | Generate barcode using POST request with parameters in multipart form.
*RecognizeAPI* | [**Recognize**](docs/RecognizeAPI.md#recognize) | **Get** /barcode/recognize | Recognize barcode from file on server using GET requests with parameters in route and query string.
*RecognizeAPI* | [**Recognize**](docs/RecognizeAPI.md#recognize) | **Get** /barcode/recognize | Recognize barcode from file on server in the Internet using GET requests with parameter in query string. For recognizing files from your hard drive use `recognize-body` or `recognize-multipart` endpoints instead.
*RecognizeAPI* | [**RecognizeBase64**](docs/RecognizeAPI.md#recognizebase64) | **Post** /barcode/recognize-body | Recognize barcode from file in request body using POST requests with parameters in body in json or xml format.
*RecognizeAPI* | [**RecognizeMultipart**](docs/RecognizeAPI.md#recognizemultipart) | **Post** /barcode/recognize-multipart | Recognize barcode from file in request body using POST requests with parameters in multipart form.
*ScanAPI* | [**Scan**](docs/ScanAPI.md#scan) | **Get** /barcode/scan | Scan barcode from file on server using GET requests with parameter in query string.
*ScanAPI* | [**Scan**](docs/ScanAPI.md#scan) | **Get** /barcode/scan | Scan barcode from file on server in the Internet using GET requests with parameter in query string. For scaning files from your hard drive use `scan-body` or `scan-multipart` endpoints instead.
*ScanAPI* | [**ScanBase64**](docs/ScanAPI.md#scanbase64) | **Post** /barcode/scan-body | Scan barcode from file in request body using POST requests with parameter in body in json or xml format.
*ScanAPI* | [**ScanMultipart**](docs/ScanAPI.md#scanmultipart) | **Post** /barcode/scan-multipart | Scan barcode from file in request body using POST requests with parameter in multipart form.

Expand Down
2 changes: 1 addition & 1 deletion barcode/api_recognize.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ type RecognizeAPIRecognizeOpts struct {
}

/*
* Recognize - Recognize barcode from file on server using GET requests with parameters in route and query string.
* Recognize - Recognize barcode from file on server in the Internet using GET requests with parameter in query string. For recognizing files from your hard drive use `recognize-body` or `recognize-multipart` endpoints instead.
* @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @param barcodeType Type of barcode to recognize
* @param fileUrl Url to barcode image
Expand Down
2 changes: 1 addition & 1 deletion barcode/api_scan.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ var (
type ScanAPIService service

/*
* Scan - Scan barcode from file on server using GET requests with parameter in query string.
* Scan - Scan barcode from file on server in the Internet using GET requests with parameter in query string. For scaning files from your hard drive use `scan-body` or `scan-multipart` endpoints instead.
* @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @param fileUrl Url to barcode image

Expand Down
2 changes: 1 addition & 1 deletion barcode/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (
)

const (
PACKAGE_VERSION = "4.2506.0"
PACKAGE_VERSION = "4.2507.0"
PACKAGE_NAME = "go sdk"
X_ASPOSE_CLIENT = "x-aspose-client"
X_ASPOSE_CLIENT_VERSION = "x-aspose-client-version"
Expand Down
2 changes: 1 addition & 1 deletion barcode/configuration.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ func NewConfiguration() *Configuration {
cfg := &Configuration{
BasePath: "https://api.aspose.cloud/v4.0",
DefaultHeader: make(map[string]string),
UserAgent: "Aspose-Barcode-SDK/4.2506.0/go",
UserAgent: "Aspose-Barcode-SDK/4.2507.0/go",
}
return cfg
}
Expand Down
4 changes: 2 additions & 2 deletions docs/RecognizeAPI.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ All URIs are relative to *<https://api.aspose.cloud/v4.0>*

Method | HTTP request | Description
------ | ------------ | -----------
[**Recognize**](RecognizeAPI.md#Recognize) | **Get** /barcode/recognize | Recognize barcode from file on server using GET requests with parameters in route and query string.
[**Recognize**](RecognizeAPI.md#Recognize) | **Get** /barcode/recognize | Recognize barcode from file on server in the Internet using GET requests with parameter in query string. For recognizing files from your hard drive use &#x60;recognize-body&#x60; or &#x60;recognize-multipart&#x60; endpoints instead.
[**RecognizeBase64**](RecognizeAPI.md#RecognizeBase64) | **Post** /barcode/recognize-body | Recognize barcode from file in request body using POST requests with parameters in body in json or xml format.
[**RecognizeMultipart**](RecognizeAPI.md#RecognizeMultipart) | **Post** /barcode/recognize-multipart | Recognize barcode from file in request body using POST requests with parameters in multipart form.

## Recognize

> BarcodeResponseList Recognize(ctx, barcodeType, fileUrl, optional)
Recognize barcode from file on server using GET requests with parameters in route and query string.
Recognize barcode from file on server in the Internet using GET requests with parameter in query string. For recognizing files from your hard drive use `recognize-body` or `recognize-multipart` endpoints instead.

### Recognize Required Parameters

Expand Down
4 changes: 2 additions & 2 deletions docs/ScanAPI.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ All URIs are relative to *<https://api.aspose.cloud/v4.0>*

Method | HTTP request | Description
------ | ------------ | -----------
[**Scan**](ScanAPI.md#Scan) | **Get** /barcode/scan | Scan barcode from file on server using GET requests with parameter in query string.
[**Scan**](ScanAPI.md#Scan) | **Get** /barcode/scan | Scan barcode from file on server in the Internet using GET requests with parameter in query string. For scaning files from your hard drive use &#x60;scan-body&#x60; or &#x60;scan-multipart&#x60; endpoints instead.
[**ScanBase64**](ScanAPI.md#ScanBase64) | **Post** /barcode/scan-body | Scan barcode from file in request body using POST requests with parameter in body in json or xml format.
[**ScanMultipart**](ScanAPI.md#ScanMultipart) | **Post** /barcode/scan-multipart | Scan barcode from file in request body using POST requests with parameter in multipart form.

## Scan

> BarcodeResponseList Scan(ctx, fileUrl)
Scan barcode from file on server using GET requests with parameter in query string.
Scan barcode from file on server in the Internet using GET requests with parameter in query string. For scaning files from your hard drive use `scan-body` or `scan-multipart` endpoints instead.

### Scan Required Parameters

Expand Down