0

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?

  • 1
    You need to specify which fields you want. Read the documentation for which fields that exists – WizKid Sep 01 '16 at 21:19

1 Answers1

0

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.

Bobface
  • 2,782
  • 4
  • 24
  • 61