are there new urls for the rbg and arena info?
|
could we get an effect api or change the enchant id from the effect is to the spell id? pritty please?
|
reciving a 503 error on this resource is it down?
|
so im looking at the new character talent output in the api .. and unless this changes but is there a field for specialization?
|
Just wondering if thers gona be an update soon for the api with some new stuff.. or even some fixes the last update we got was recipe names.. like .... allmost 2 months ago ..
impatiently yours ulminia |
hey Api team and Straton .. you guys have any more updates for us ? or timelines on things for us yet? been like 2 weeks since we got any thing shiny and new to play with ....
|
I know you guys have given us access to the item api but with some info missing in the api call is there any change of getting a fully formed html tooltip for items aswell? if not i can continue to build them on my own, but this would save many actions and processing time..
|
so i have neerly finished my php-api and thought id help some people out
this is a function i use to get a well formed url for my script rather then having to code a url all the time i pass bits of data and get a full return /* @ui the battle.net region url @class is the type of data being asked for character,status,team ... @server wow realm name (url functions removes ' and replaces + with %20 as per blizzard url settings) @name ither character team or guild names @fields this is optional data you wana pass along to the url fields or multiple realm names !q returnd fuly formed url for the api */ function BuildUrl($ui,$class,$server,$name,$fields) { $name = str_replace('+' , '%20' , urlencode($name)); $server = strtolower(str_replace("\'" , '' ,$server)); $server = str_replace('+' , '%20' , urlencode($server)); switch ($class) { case 'character': // /api/wow/character/{realm}/{name} $q = 'api/wow/character/'.$server.'/'.$name.$fields['data'].''; break; case 'status': $q = 'api/wow/realm/status?'.$fields['data'].''; break; case 'guild': // /api/wow/guild/{realm}/{name} $q = 'api/wow/guild/'.$server.'/'.$name.'/'.$fields['data'].''; break; case 'team': // /api/wow/arena/{realm}/{size}/{name} (size being 2v2, 3v3 or 5v5) $q = 'api/wow/arena/'.$server.'/'.$field['data'].'/'.$name.''; break; case 'item': #api/wow/data/item/38268 $q = 'api/wow/item/'.$name; break; case 'gperks': $q = 'api/wow/data/guild/perks'; break; case 'gachievments': $q = 'api/wow/data/guild/perks'; break; case 'grewards': $q = 'api/wow/data/guild/rewards'; break; case 'races': $q = 'api/wow/data/character/races'; break; case 'achievement': $q = 'api/wow/data/achievement/'.$name.''; break; default: $q = ''; break; } return $q; } Ial continue to post more code to help anyone out |
This is my dev site http://www.ulminia.wowroster.net
The page that is up rite now is my characters achievements this is basic info as i have not coded in the cirtera info as of yet I will be adding more Including Talent trees and Reputation This info is live and not cached yet so it does load slow |
looks like data is comming up lil by lil i dono if its a mistake but with out proper field values most is missing .
|
i work over at wowroster.net a site that offers a guild roster solution for players of wow to host data on about there guild and characters. For the longest time i was using xml to retrieve data from the old armory and it was working but now that a json api is being dev'd im psyched!!
i have some questions tho for data 1. Any plan to have talent data accessed trees ranks and info ex icon min max rank and so on 2. is there a bottle neck as to how many request in x amount of time 3. Can i kiss the programmers for doing this for us? Hopping to see more in the future! |