I could not find a simple example showing how to consume the Reddit API to get the comments for a post. This shows step by step how to authenticate and the endpoints to request.
You need to create an app to get an app id
and secret
.
Go to https://www.reddit.com/prefs/apps and at the bottom of the page under "developed applications" create a new app or view a current one.
If you click "edit" to open the app view you will be able to see the app id
and secret
, these are required for authentication.
NB: id
is displayed under the app title/description, it is not obvious that this is the id
you require
For simple script authentication you can make requests to get an access_token
by including your username and password in the request, you need to Base64 encode the id
and secret
to be used for the basic auth.
Docs: https://github.com/reddit-archive/reddit/wiki/OAuth2
const id = "app-id";
const secret = "app-secret";
const basicAuth = Buffer.from(`${id}:${secret}`).toString("base64");
const username = "username";
const password = "password";
const params = new URLSearchParams();
params.append("grant_type", "password");
params.append("username", username);
params.append("password", password);
fetch("https://www.reddit.com/api/v1/access_token", {
method: "POST",
headers: {
Authorization: `Basic ${basicAuth}`
},
body: params
})
{
"access_token": "some-access-token",
"token_type": "bearer",
"expires_in": 3600,
"scope": "*"
}
You then use access_token
for all subsequent requests.
{
headers: {
Authorization: `Bearer ${access_token}`
}
}
Getting comments for a post is done using the post id, there are different options which can be used for sorting/limiting.
For example, with this post: https://www.reddit.com/r/Showerthoughts/comments/lmj453/people_who_jog_on_the_roads_in_the_dark_wearing/ the id is lmj453
.
Docs: https://www.reddit.com/dev/api/#GET_comments_{article}
const postId = "lmj453";
const sort = "old";
const threaded = false;
fetch(`http://oauth.reddit.com/comments/${postId}?sort=${sort}&threded=${threaded}`, {
method: "GET",
headers: {
Authorization: `Bearer ${access_token}`
}
})
A lot of the fields which are retured are ignored here, its only really focusing on the structure.
[
{
"kind": "Listing",
"data": {
/// This is the Post information
}
},
{
"kind": "Listing",
"data": {
"children": [
{
"kind": "t1",
"data": {
"author": "Post Author",
"body": "Post Body",
"id": "Post Id",
"parent_id": "Parent Id",
"...": "..." /// More info here
}
},
{
"kind": "more",
"data": {
"count": 1234,
"children": [
"child-id-1",
"child-id-2",
"child-id-3"
],
"...": "..." /// More info here
}
}
]
}
},
]
To get all of the comments for a post you need to call the get comments above, and then use the morechildren
api to fetch everything.
You will see in the response above { "kind": "more" }
, these kinds hold the data required to fetch all comments.
Docs: https://www.reddit.com/dev/api/#GET_api_morechildren
const linkId = `t3_${postId}`; // This is the post id of the original request, the t3_ prefix signifies post
const children = "child-id-1,child-id-2,child-id-3"; // A comma separated list of child ids from "more" data NB: this can only be 100 children long
fetch(`http://oauth.reddit.com/api/morechildren?link_id=${linkId}&children=${children}&api_type=json`, {
method: "GET",
headers: {
Authorization: `Bearer ${access_token}`
}
})
{
"json": {
"errors": [],
"data": {
"things": [
{
"kind": "t1",
"data": {
"author": "Post Author",
"body": "Post Body",
"id": "Post Id",
"parent_id": "Parent Id",
"...": "..." /// More info here
}
}
]
}
}
}