Interface NewsfeedSearchParams

interface NewsfeedSearchParams {
    count?: number;
    end_time?: number;
    extended?: number | boolean;
    fields?: BaseUserGroupFields[];
    latitude?: number;
    longitude?: number;
    q?: string;
    start_from?: string;
    start_time?: number;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

count?: number

Number of posts to return.

end_time?: number

Latest timestamp (in Unix time) of a news item to return. By default, the current time.

extended?: number | boolean

'1' - to return additional information about the user or community that placed the post.

latitude?: number

Geographical latitude point (in degrees, -90 to 90) within which to search.

longitude?: number

Geographical longitude point (in degrees, -180 to 180) within which to search.

q?: string

Search query string (e.g., 'New Year').

start_from?: string
start_time?: number

Earliest timestamp (in Unix time) of a news item to return. By default, 24 hours ago.

Generated using TypeDoc