FeedService
Feed service can be used in the following way:
1. Import the service from our library:
import {FeedService} from "@selfcommunity/api-services";
2. Create a function and put the service inside it!
The async function `getMainFeed` will return the paginated list of main feed posts.
async getMainFeed() {
return await FeedService.getMainFeed();
}
In case of required `params`, just add them inside the brackets.
async likeFeedObjs(objIds) {
return await FeedService.likeFeedObjs(objIds);
}
If you need to customize the request, you can add optional config params (`AxiosRequestConfig` type).
1. Declare it(or declare them, it is possible to add multiple params)
const headers = headers: {Authorization: `Bearer ${yourToken}`}
2. Add it inside the brackets and pass it to the function, as shown in the previous example!
Constructors
new FeedService()
new FeedService():
FeedService
Returns
Methods
getExploreFeed()
static
getExploreFeed(params
?,config
?):Promise
<SCPaginatedResponse
<SCFeedUnitType
>>
Parameters
Parameter | Type |
---|---|
params ? | FeedParams |
config ? | AxiosRequestConfig <any > |
Returns
Promise
<SCPaginatedResponse
<SCFeedUnitType
>>
Source
getMainFeed()
static
getMainFeed(params
?,config
?):Promise
<SCPaginatedResponse
<SCFeedUnitType
>>
Parameters
Parameter | Type |
---|---|
params ? | FeedParams |
config ? | AxiosRequestConfig <any > |
Returns
Promise
<SCPaginatedResponse
<SCFeedUnitType
>>
Source
getMainFeedUnseenCount()
static
getMainFeedUnseenCount(config
?):Promise
<SCFeedUnseenCountType
>
Parameters
Parameter | Type |
---|---|
config ? | AxiosRequestConfig <any > |
Returns
Promise
<SCFeedUnseenCountType
>
Source
likeFeedObjs()
static
likeFeedObjs(object
,config
?):Promise
<SCPaginatedResponse
<SCFeedUnitType
>>
Parameters
Parameter | Type |
---|---|
object | number [] |
config ? | AxiosRequestConfig <any > |
Returns
Promise
<SCPaginatedResponse
<SCFeedUnitType
>>
Source
markReadASpecificFeedObj()
static
markReadASpecificFeedObj(object
,config
?):Promise
<any
>
Parameters
Parameter | Type |
---|---|
object | number [] |
config ? | AxiosRequestConfig <any > |
Returns
Promise
<any
>