- Return a user's feed of posts
Provides a list of posts in the user’s feed. Accepts pagination and filtering parameters. Upon enabling expanded reactions types, the response will include the additional reaction types.
Resources
Use a specific named feed, which is a preset of filters for specific types of feeds. By default, requests return the "myfeed" feed, which includes posts the user can see but may not necessarily be following. Specifying a name not listed here will result in a 400 Bad Request error.
Return only content matching the provided types, which can be a single type or a list as either array or comma separated list. Possible values include 'article', 'link', 'note', 'image', and 'video'. Defaults to all types. Including a type not listed her will result in a 400 Bad Request error.
- US1https://partner.socialchorus.com/v2/feed/posts
- US2https://partner.us2.onfirstup.com/v2/feed/posts
- EUhttps://partner.onfirstup.eu/v2/feed/posts
curl -i -X GET \
'https://partner.socialchorus.com/v2/feed/posts?name=myfeed&search=string&filter.user_behaviors=liked&filter.channels.id=0&filter.initiative_tags.id=0&filter.content_type=article&filter.visibility=public&filter.featured=true&page.size=0&page.number=0' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '[
0
]'{ "data": [ { … } ], "meta": { "filters": { … }, "feed_name": "myfeed", "pagination": { … } } }