CommunityContent Routes
CommunityContentRouteInterface
Bases: ClientMixin
Source code in src/bungio/api/bungie/community_content.py
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | |
get_community_content(media_filter, page, sort, auth=None)
async
Returns community content.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
media_filter
|
Union[ForumTopicsCategoryFiltersEnum, int]
|
The type of media to get |
required |
page
|
int
|
Zero based page |
required |
sort
|
Union[CommunityContentSortMode, int]
|
The sort mode. |
required |
auth
|
Optional[AuthData]
|
Authentication information. Required when users with a private profile are queried, or when Bungie feels like it |
None
|
Returns:
| Type | Description |
|---|---|
PostSearchResponse
|
The model which is returned by bungie. General endpoint information. |
Source code in src/bungio/api/bungie/community_content.py
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | |