Capitan Proton
Gold Elite
-
Hidden link for visitors, to see Log in or register now.
-
Hidden link for visitors, to see Log in or register now.
- [MySQL Server]
- Domain
- Discord Account required for login.
Features
- Discord oAuth2 Login
- Stripe Payment Integration
- PayPal Payment Integration
- Email Integration
- FAQ Page
- Site Statistics
- Product Management
- Cart Page
- Review Page
- Team Page
- Partners Page
- Product Creation
- Product Changelogs
- Website Statistics
- Notifications System
- Invoicing System
- Purchase Receipts
- Custom Footer Advertisements
- Customizable Website Styling
- Customizable Website Settings
- Customizable Navbar Buttons
- Staff User Management
- Banned User Management
- FirewallGG Integration
- Integrated License System
- Backend API Integration
- Much Much More!
Hidden link for visitors, to see
Log in or register now.
Payment System Licensing
You need to make a GET request to
Hidden link for visitors, to see
Log in or register now.
MAKE SURE TO REPLACE domain.ext with YOUR DOMAIN!
Here is a code example in JavaScript. Make sure to provide the productid header in the GET request.
JavaScript:
const axios = require('axios');
licenseCheck("YOUR_PRODUCT_UNIQUE_ID", "YOUR_LICENSE_KEY");
async function licenseCheck(productId, licenseKey) {
let request = await axios({
method: 'get',
url: 'https://domain.ext/api/v1/license/check/' + licenseKey,
headers: {
'Content-Type': 'application/json',
'productid': productId
},
});
if(request.data.authorized) {
return console.log('License Authorized!');
} else {
console.log('License Failed!');
if(request.data.reason != 'success.') console.log(request.data.reason);
return process.exit(1);
};
};