Hello,
I am developing a high level API in java with lots of high level functionalities. Basically it is a .JAR file so programmers can build Agents with trading operations easily.
The work in progress site can be consulted at : www.JBetAPI.com
Before I make the download and examples available to the public I would like to control the users that can use this .JAR file.
For now I want to make it free but not open source (the kernel code will be obfuscated). However being free I want to control the users that can use this jar. I would like to know in detail how applications validate the users at the login moment.
The requirement for users to use JBet API is to be registered in the site forum. (when the login is executed in the JBet .Jar it will access this database… )
On my API to do the login this is the code:
When someone executes the line loginEnv.login() I want to verify on my database if the user is “registered”…
I think betfair provides some service to help on this validation with "My API Console" service (also because of the security issues..) (?)
Some example of the information flow for this login verification process wold be nice.
Best regards,
Rui
I am developing a high level API in java with lots of high level functionalities. Basically it is a .JAR file so programmers can build Agents with trading operations easily.
The work in progress site can be consulted at : www.JBetAPI.com
Before I make the download and examples available to the public I would like to control the users that can use this .JAR file.
For now I want to make it free but not open source (the kernel code will be obfuscated). However being free I want to control the users that can use this jar. I would like to know in detail how applications validate the users at the login moment.
The requirement for users to use JBet API is to be registered in the site forum. (when the login is executed in the JBet .Jar it will access this database… )
On my API to do the login this is the code:
Code:
loginEnv = new LoginEnvironment(); loginEnv.setUsername(username); loginEnv.setPassword(password); try { loginEnv.login(); ...
I think betfair provides some service to help on this validation with "My API Console" service (also because of the security issues..) (?)
Some example of the information flow for this login verification process wold be nice.
Best regards,
Rui
Comment