love98ooo / ouo-bypass-go

Bypass ouo short link

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ouo-bypass-go

A package to bypass ouo.io and ouo.press link shortener.

Features

  • Bypass reCAPTCHA v3.
  • Bypass ouo.io and ouo.press link shortener.

Installation

go get github.com/love98ooo/ouo-bypass-go

Usage

import (
    "fmt"
    ouoBypass "github.com/love98ooo/ouo-bypass-go"
)

func main() {
    url := "https://ouo.io/xxxxxx"
    bypassedURL, err := ouoBypass.Resolve(url)
    if err != nil {
        fmt.Println(err)
    } else {
        fmt.Println(bypassedURL)
    }
}

Contributing

Issue and PR welcome.

Acknowledgement

ouo-bypass-go is inspired by the following projects and so on:

License

This project is licensed under the MIT License. See the LICENSE file for details.

License: MIT

About

Bypass ouo short link

License:MIT License


Languages

Language:Go 100.0%