WoWCenter.pl
wikass zabił Mythrax the Unraveler (Normal Uldir) po raz 2.     
kuturin zdobył 7th Legionnaire's Cuffs.     
Nikandra spełnił kryterium Loot 200,000 gold osiągnięcia Got My Mind On My Money.     
Tooly zdobył Fairweather Helm.     
Muattin zdobył osiągnięcie The Dirty Five.     
Yoozku zdobył Parrotfeather Cloak.     
Mlody89 zdobył Royal Apothecary Drape.     
Weakness zabił Dazar, The First King (Mythic King's Rest) po raz 6.     
liq spełnił kryterium osiągnięcia Saving for a Rainy Day.     
Osiol spełnił kryterium osiągnięcia Saving for a Rainy Day.     
Wuntu zabił Zek'voz, Herald of N'zoth (Heroic Uldir) po raz 1.     
Olsa zabił Vectis (Heroic Uldir) po raz 6.     
Sarenus spełnił kryterium osiągnięcia Saving for a Rainy Day.     
kajtasus zdobył osiągnięcie Come Sail Away.     
ossir spełnił kryterium osiągnięcia Saving for a Rainy Day.     
mcpablo spełnił kryterium Alliance players slain. osiągnięcia Frontline Slayer.     
Emmm zabił Taloc (Heroic Uldir) po raz 17.     
AsaGorth spełnił kryterium Big-Mouth Clam osiągnięcia The Oceanographer.     

Talents..

blizz -> wysłany:
so im looking at the new character talent output in the api .. and unless this changes but is there a field for specialization?
blizz -> wysłany:
Currently if you haven't chosen a spec, there won't be a field. This happens for all characters that haven't logged in and out of 5.0.4 yet, and anyone that does and doesn't choose a spec.
blizz -> wysłany:
08/29/2012 04:12 PMPosted by Oxoxoxoxen
Currently if you haven't chosen a spec, there won't be a field. This happens for all characters that haven't logged in and out of 5.0.4 yet, and anyone that does and doesn't choose a spec.


Is this the intended behavior for people who have not chosen their talents yet?

"talents":[null],

Shouldn't it be:

"talents":[]


It will be when their profile is updated to not be a 4.3.4 profile (When they log out of the game).
blizz -> wysłany:
I think it just me, but how can i distinguish between the two specs names on a guild roster? Like for instance i can pull the primary spec name easily but not the secondary spec name?

code:
$primary = $p['character']['spec']['name'];
$secondary = $p['character']['spec']['name'];


The guild roster does not contain the secondary spec.
blizz -> wysłany:
As Ulminia already stated, you just have to look at the two talent groups listed, same as in the old api.

Here is the data from your provided url, with all non-relevant fields removed for now:

talents: [
{
selected: true,
spec: {
name: "Blood",
role: "TANK",
...
}
},
{
spec: {
name: "Frost",
role: "DPS",
...
}
}
]


The talent block that includes the "selected: true" field is the one currently active, and the other is not. Right now the two talent groups correspond directly with the primary and secondary specs in game.