I am using the ale api for eve online, but I wonder, how do i figure out what calls i can make?
$account = $ale->account->Characters();
$characterSheet = $ale->char->CharacterSheet();
i found out these two from the help and documentation, and used printl to see whats in there and how to use that, but how can i for excample find the skill names?
Is there a document with all the calls you can make?
Maybe you could use PHP’s reflection class? It should give you an overview of objects and classes, their methods and properties.
http://www.tuxradar.com/practicalphp/16/4/0