Logos API Authentication is a validator for tweaks.
| Login | Login success |
|---|---|
![]() |
![]() |
| Update | Expired |
|---|---|
![]() |
![]() |
| Dashboard |
|---|
![]() |
Clone or Download this Repo. Then simply drag the folder API-EN or API-VI to your project and rename folder to API.
Register account and create package on APIServer
Start by adding the following to your project
#import "API/APIClient.h"#Edit TWEAK_NAME and remove @@
@@TWEAK_NAME@@_LDFLAGS += API/libAPIClient.a
#import "APIClient.h"
void function(){
APIClient *API = [[APIClient alloc] init];
[API setToken:@"TOKEN"]; //Enter token from dashboard
//paid
[API paid:^{
//load menu
loadview(); //etc
menuSetup();
//Optional
NSLog(@"APIData - Key: %@", [API getKey]);
NSLog(@"APIData - UDID: %@", [API getUDID]);
NSLog(@"APIData - Expiry date: %@", [API getExpiryDate]);
NSLog(@"APIData - Device model: %@", [API getDeviceModel]);
}];
}
See more in APIClient.h
Created by Bao Nguyen.




