public class Main {
    public static void main(String[] args) {
        String baseUrl = "https://saoauth.com/api/client/auth";
        String appName = "Kirigaya";
        String ownerId = "706f2d48f9eb0762";
        String appSecret = "27b79d48a7df496de8aff0c56f7624ddf29e9fff66fac08efb578e919a74e42f";
        String appVersion = "1.0";

        System.out.println("SaoAuth Java example ready.");
        System.out.println("URL: " + baseUrl);
        System.out.println("App: " + appName + " v" + appVersion);
        System.out.println("Owner: " + ownerId);
        System.out.println("Secret: " + appSecret);
    }
}
