From EncyclopAtys
(→Wiki implemetation) |
m |
||
Line 38: | Line 38: | ||
== API error codes == | == API error codes == | ||
+ | |||
---- | ---- | ||
− | Tools | + | =Tools= |
− | + | ||
== Render == | == Render == | ||
+ | |||
== Guild icon == | == Guild icon == | ||
+ | |||
== Item icon == | == Item icon == | ||
+ | |||
---- | ---- | ||
− | In Game | + | =In Game= |
− | |||
== AppZone == | == AppZone == | ||
== Ingame browser == | == Ingame browser == | ||
---- | ---- | ||
− | WikipAtys | + | =WikipAtys= |
− | |||
==Wiki implemetation== | ==Wiki implemetation== | ||
Pages in [[:Category:API templates|Category : "API templates]]" : | Pages in [[:Category:API templates|Category : "API templates]]" : |
Revision as of 18:45, 22 July 2020
The last editing was from Dorothée on 22.07.2020.
Contents
This page is the Ryzom Forge version of api.ryzom.com site
According to Wikipedia, an An API or "Application Programming interface" is a computing interface which defines interactions between multiple software intermediaries. It defines the kinds of calls or requests that can be made, how to make them, the data formats that should be used, the conventions to follow, etc. [...]Through information hiding, APIs enable modular programming, which allows users to use the interface independently of the implementation.
In our case: Ryzom API is an URL based system to get some Ryzom in-game information like game time, character, guild profile... API changes log can be found on forum.
Basics
Base URL
All requests are using https://api.ryzom.com as base url.
API keys
- API keys are 41 alphanumeric characters. Character keys start with 'c' and guild keys with 'g'.
- API keys must be created using "RyzomAPI app": https://app.ryzom.com/app_ryzomapi
- You must be guild leader or high officer to manage and view guild api key.
PHP API
PHP API library can be found in the ryzomapi_lite repository.
Third party libraries
(PHP) Sheet translations and info about resources can be found from the https://github.com/nimetu/ryzom_extra repository. The json-resources branch has data in JSON format.
Functions
Time
To know the time and date in Ryzom.
Usage
<base URL>/time.php
URL Parameters
- format
- (optional), defaults ro raw.
raw
: Returns the tick. The server tick is a 32 bit integer that increases by one every 100 milliseconds.txt
: Returns a homine-readable string.xml
: Returns an xml file that contains all shard time information.
Cache duration
The data is cached for 1 minute.
XML structure
<shard_time> <server_tick>514105152</server_tick> <jena_year>2576</jena_year> <day_of_jy>319</day_of_jy> <month_of_jy>10</month_of_jy> <cycle>0</cycle> <day_of_cycle>319</day_of_cycle> <month_of_cycle>10</month_of_cycle> <day_of_month>19</day_of_month> <day_of_week>1</day_of_week> <season>3</season> <day_of_season>49</day_of_season> <time_of_day>13</time_of_day> <txt_en>13h - Dua, Mystia 20, 1st AC 2576</txt_en> <txt_fr>13h - Dua, Mystia 20, 1er CA 2576</txt_fr> <txt_de>13h - Dua, Mystia 20, 1. AZ 2576</txt_de> <cache created="1387437183" expire="1387437243"/> </shard_time>
PHP interface
ryzom_time_api()
: Returns SimpleXMLElement or boolean false on failure.
<?php require_once "ryzomapi_lite.php"; $time = ryzom_time_api('xml'); if ($time !== false) { $txt_en = htmlspecialchars($time->txt_en); echo "Atys time is {$txt_en}"; } else { echo "API failure"; } ?>
Character
Guilds
Guild
API error codes
Tools
Render
Guild icon
Item icon
In Game
AppZone
Ingame browser
WikipAtys
Wiki implemetation
Pages in Category : "API templates" :