Provides a list of posts in the user’s channels feeds. Accepts pagination and filtering parameters. Upon enabling expanded reactions types, the response will include the additional reaction types.
Resources
Security
oauth2_as_a_user(Required scopes: feeds.read)
Use a specific named feed, which is a preset of filters for specific types of feeds. By default, requests return the "following" feed. Specifying a name not listed here will result in a 400 Bad Request error.
Default:"following"
Enum:"following""recommended""latest""popular""most_contributed""visible""search"
- US1https://partner.socialchorus.com/v2/feed/channels/posts
- US2https://partner.us2.onfirstup.com/v2/feed/channels/posts
- EUhttps://partner.onfirstup.eu/v2/feed/channels/posts
curl -i -X GET \
'https://partner.socialchorus.com/v2/feed/channels/posts?name=following&query=string&page.size=0&page.number=0' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '[
0
]'Response
{ "data": [ { … } ], "meta": { "filters": { … }, "feed_name": "following", "pagination": { … } } }