HTML JPG PDF XML DOCX
  Product Family
PDF

Get Links from PDF via Go SDK

API for getting Links from PDF documents with Aspose.PDF Cloud Go SDK

Get Started

How to extract Links from PDF documents using Cloud Go SDK

For getting Links from PDF documents, we’ll use Aspose.PDF Cloud Go SDK This Cloud Go SDK assists Go programmers in developing cloud-based PDF creator, annotator, editor, and converter apps using Go programming language via Aspose.PDF REST API. Use the following command from the Package Manager Console.

Package Manager Console Command


     
    go get -u github.com/aspose-pdf-cloud/aspose-pdf-cloud-go/v25
     
     

Steps to get Links using Go

Aspose.PDF Cloud Go developers can easily extract Links from PDF documents. Developers need just a few lines of code.

  1. Install Go SDK
  2. Execute launcher for Links uses cases start links_launch.go
  3. Create a PDF API service using ‘initPdfApi()’ function in module links_helper.go
  4. Upload a PDF document to the Aspose Cloud server using ‘uploadFile()’ function in module links_helper.go
  5. Extract Links from a PDF document using “getLinks()” functions in module extract_links.go
  6. If successful, display the retrieved links
 

This sample code shows extracting Links from PDF document using PDF Cloud Go SDK


    package main

    import (
        "fmt"

        asposepdfcloud "github.com/aspose-pdf-cloud/aspose-pdf-cloud-go/v25"
    )

    func getLinks(pdf_api *asposepdfcloud.PdfApiService, document string, page_num int32, remote_folder string) {
        uploadFile(pdf_api, document)

        args := map[string]interface{}{
            "folder": remote_folder,
        }

        result, httpResponse, err := pdf_api.GetPageLinkAnnotations(document, page_num, args)
        if err != nil {
            fmt.Println(err.Error())
        } else if httpResponse.StatusCode < 200 || httpResponse.StatusCode > 299 {
            fmt.Println("Unexpected error!")
        } else {
            showLinks(&result.Links.List)
        }
    }
 

Work with the Links in PDF via Go SDK

By extracting links, one can systematically verify the validity and relevance of each URL, ensuring that all references are current and functional.​ For tasks such as downloading linked documents or conducting batch analyses, extracting URLs enables automation, saving time and reducing manual effort. Extract the Links from PDF documents with Aspose.PDF Cloud Go SDK.

With our Go SDK you can

  • Add PDF document’s header & footer in text or image format.
  • Add tables & text or image stamps to PDF documents.
  • Append multiple PDF documents to an existing file.
  • Work with PDF attachments, annotations, & form fields.
  • Apply encryption or decryption to PDF documents & set a password.
  • Delete all stamps & tables from a page or entire PDF document.
  • Delete a specific stamp or table from the PDF document by its ID.
  • Replace single or multiple instances of text on a PDF page or from the entire document.
  • Extensive support for converting PDF documents to various other file formats.
  • Extract various elements of PDF files & make PDF documents optimized.
  • You can try out our free App to test the functionality.

  •