So I want to use the api but when I use /{event-id}/feed
I get the follwing: * message * date * id
But what I also like is the name of the user who posted the message. How can I achieve this?
So I want to use the api but when I use /{event-id}/feed
I get the follwing: * message * date * id
But what I also like is the name of the user who posted the message. How can I achieve this?
The API-References says that you get An array of Post objects as result. These Post objects contain detailed information about the message. For example the field "from": Information about the profile that posted the message.
If the creator of the message is a normal user, from will contain an User object. This object contains the fields first_name and last_name.