Skip to content

Commit 68287d6

Browse files
author
Joan Reyero
authored
Fixed pagination when getting members from Twitter (#312)
1 parent f0516b2 commit 68287d6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

backend/src/serverless/integrations/usecases/twitter/getPostsByMention.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ const getPostsByMention = async (
3333
}
3434

3535
if (input.page !== undefined && input.page !== '') {
36-
config.params.next_token = input.page
36+
config.params.pagination_token = input.page
3737
}
3838

3939
try {

0 commit comments

Comments
 (0)