question

xred379 avatar image
xred379 asked

ListGroupMembers Get display name

I want to make a GUI that lists all the members in the clan same like This

it's been 2 years ago so I think there should be a new solution now

However, I already tried everything I can do like GetProfile but DisplayName return null and I can't find any solutions

Is there any way to do it?

entities
10 |1200

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Ivan Cai avatar image
Ivan Cai answered

Currently, the playfab don't support for your needs. You can always see the roadmap for upcoming features in our roadmap page(https://docs.microsoft.com/en-us/gaming/playfab/roadmap/ ). Or, you can take an eye on our blog for the latest updates .

10 |1200

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

pauberson avatar image
pauberson answered

Took me ages to find, but you can do this:

Get the master_account_id from the Lineage property of each member

e.g. (in Unity)

member.Lineage["master_player_account"].Id

Then the DisplayName via the PlayFabClientAPI.GetAccountInfo api

e.g. result.AccountInfo.TitleInfo.DisplayName

10 |1200

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.