-
-
Save Shelob9/2e81a4fab5211c66489ecf728a6cda2c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const { data } = await xrpc.get('app.bsky.feed.getFeedSkeleton', { | |
params: { | |
feed: AtUri.make( | |
`did:plc:5rw2on4i56btlcajojaxwcat`, | |
'app.bsky.feed.generator', | |
`aaao6g552b33o` | |
).toString(), | |
limit: 30, | |
cursor, | |
}, | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const { data } = await xrpc.get('app.bsky.feed.getFeed', { | |
params: { | |
feed: AtUri.make( | |
`did:plc:5rw2on4i56btlcajojaxwcat`, | |
'app.bsky.feed.generator', | |
`aaao6g552b33o` | |
).toString(), | |
limit: 30, | |
cursor: undefined | |
}, | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment