We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7eb4be3 commit 675ed3bCopy full SHA for 675ed3b
twitter-openapi-typescript/src/apis/tweetApi.ts
@@ -23,7 +23,7 @@ type GetSearchTimelineParam = {
23
extraParam?: { [key: string]: any };
24
};
25
type GetHomeTimelineParam = {
26
- couser?: string;
+ cursor?: string;
27
count?: number;
28
29
@@ -147,7 +147,7 @@ export class TweetApiUtils {
147
async getHomeTimeline(param: GetHomeTimelineParam = {}): Promise<ResponseType> {
148
const args = {
149
...(param.count == undefined ? {} : { count: param.count }),
150
- ...(param.couser == undefined ? {} : { couser: param.couser }),
+ ...(param.cursor == undefined ? {} : { cursor: param.cursor }),
151
...param.extraParam,
152
153
0 commit comments