question

infoplayfab avatar image
infoplayfab asked

How to use CustomTags with ListBuildSummariesRequest?

I wanna get list of Builds with metadata.

One build has metadata key type value entrace

Now I write below but couldn't get list

  var requestData = new PlayFab.MultiplayerModels.ListBuildSummariesRequest(); requestData.AuthenticationContext = authContext;
 requestData.CustomTags = new Dictionary<string, string>();
 requestData.CustomTags.Add("metadata", "entrance");

Please support.

Thanks

multiplayer
10 |1200

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

1 Answer

·
Neils Shi avatar image
Neils Shi answered

The Custom Tags is not designed to do that. It’s an arbitrary data you can use for PlayStream events. It will show up in the event data directly, allowing you to use it for any analytics you need to do. And the build metadata is only available to the server through Game Server SDK (GSDK), so, you cannot use Custom Tags to get it. For more info, you can refer to Using Custom Tags with PlayStream Events.

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.