1.0.0 • Published 2 years ago

linkvertise-extend v1.0.0

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

Linkvertise API Extender


Initializing the linkvertise class

const Linkvertise = require('linkvertise-extend')
const UserId = 0
/*
UserId being the ID that you can find
at the end of your referral link
*/
const User = new Linkvertise(UserId)

Monetizing links

/*
Returns {token: string, url: string}
token -> can be used to check if someone went to the monetized link
url -> where the user needs to go
*/
const Link = await User.Shorten("https://example.com/")

Checking if monetized link was visited

const WasVisited = await User.IsFinished(token)