question

pdaz avatar image
pdaz asked

Custom Event Body issue

After the last PlayFab update the Body of my custom events disappeared. I tried to test it like it is writen here: https://api.playfab.com/docs/tutorials/landing-analytics/pf-events

WriteClientPlayerEventRequest eventRequest = new WriteClientPlayerEventRequest()
            {
                EventName = "finish_crown",
                Body = new Dictionary<string, object>() {
                    { "player1", "Админ" },
                    { "player2", "[ff00ff]Админ" }
                }
            };
        PlayFabClientAPI.WritePlayerEvent(eventRequest, (result) =>
            {
            }, (error) =>
            {
                Debug.Log(error.ErrorMessage);
            });

But Body does not appear on Event History.

TitleId: 1941

PlayerId: B0871DBBD7A98BD6

EventId: 29f9ec62c5564589a153b4f2bfcab260

Content
4 comments
10 |1200

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

Hernando avatar image Hernando commented ·

We checked your title and found that the body data of this custom event was lost in Event History and have informed the related team to handle it. We'll update this post as more information become available.

1 Like 1 ·
pdaz avatar image pdaz Hernando commented ·

By the way can you return "Load more" button in Event History?

0 Likes 0 ·
Hernando avatar image Hernando pdaz commented ·

This behaviour is the cause of a new feature and we decided to slowly roll it.

0 Likes 0 ·
Show more comments

1 Answer

·
franklinchen avatar image
franklinchen answered

Hi @pdaz,

Could you please try again? Tell me if this response body data missing issue is still existing in your title. Thanks

2 comments
10 |1200

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

pdaz avatar image pdaz commented ·

Still not working, sorry.

0 Likes 0 ·
franklinchen avatar image franklinchen pdaz commented ·

Hi @pdaz, just discussed with engineering team, based on the historical data and logs, you have tried to send over 512 different fields on this one event "finish_crown", that's hitting the limit.

If you are running bunch of tests, please notice this limit and switch to a new event.

If this is your game's design, for example, creating a new field on the event per user, please consider changing that. Thanks.

1 Like 1 ·

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.