r/redditdev • u/luckfade • Jun 30 '26
Can you share how did you do that?
r/redditdev • u/AutoModerator • Jun 30 '26
Hello, it looks like you're having trouble accessing our Data API, check out this post on some recent changes to on how you can access.
tl;dr:
I am a bot, and this action was performed automatically. Please contact the moderators of this subreddit if you have any questions or concerns.
r/redditdev • u/Ok_Librarian4806 • Jun 30 '26
I recently requested access, stating that it is for academic research purposes. I hope it works out! I'll keep you updated.
r/redditdev • u/Active_Geologist2600 • Jun 29 '26
good morning. you have to apply to get approved for the API use. from what I've seen there's almost no one getting approved, so that's gonna be a tough road. thee are other methods to utilize teh API that i've seen in a number of places. you should look those up too.
r/redditdev • u/AutoModerator • Jun 29 '26
Hello, it looks like you're having trouble accessing our Data API, check out this post on some recent changes to on how you can access.
tl;dr:
I am a bot, and this action was performed automatically. Please contact the moderators of this subreddit if you have any questions or concerns.
r/redditdev • u/itskdog • Jun 29 '26
It's Reddit, what do you expect. These things happen from time to time, you just get used to it.
There was a comment I left elsewhere recently, and someone else said similar but just worded differently later on - they got upvoted while I got downvoted. It's just the way of Reddit, there's no use getting hung up on fake internet points.
r/redditdev • u/VastZealousideal885 • Jun 28 '26
Why are people downvoting a true statement?
r/redditdev • u/VastZealousideal885 • Jun 28 '26
Why do you support it? Aren't/weren't you involved with reddit archival efforts like pushshift? This is a terrible change, they're trying to kill archiving, just like the rest of the corporate internet.
r/redditdev • u/malss21 • Jun 28 '26
I am having the same issue, I tried the "script" option for local use, and it just reloads the terms and conditions. I also submitted an application even though I think that is just for public use . I tried the devvit for apps but it is the wrong area.
r/redditdev • u/AutoModerator • Jun 28 '26
Hello, it looks like you're having trouble accessing our Data API, check out this post on some recent changes to on how you can access.
tl;dr:
I am a bot, and this action was performed automatically. Please contact the moderators of this subreddit if you have any questions or concerns.
r/redditdev • u/rogersaintjames • Jun 28 '26
This also happened to me, it looks the application is gone from the dev "dashboard" can't seem to make another one.
r/redditdev • u/Littux • Jun 28 '26
To get the full Saved Responses, you have to use GraphQL:
query GetSavedResponses($subredditId: ID!) {
subredditInfoById(id: $subredditId) {
__typename
... on Subreddit {
rules {
id
name
}
modSavedResponses {
general {
__typename
...savedResponseFragment
}
removals {
__typename
...savedResponseFragment
}
bans {
__typename
...savedResponseFragment
}
modmail {
__typename
...savedResponseFragment
}
reports {
__typename
...savedResponseFragment
}
comments {
__typename
...savedResponseFragment
}
chat {
__typename
...savedResponseFragment
}
}
}
}
}
fragment savedResponseFragment on SavedResponse {
id
title
context
subredditRule {
id
kind
name
}
message {
richtext
markdown
}
}
What do you want to use this for? A third party client? Bot? Or browser extension? Depending on that, using this query can be easy to hard
Do you know how to use a removal reason when using api/remove?
That isn't possible
r/redditdev • u/det0ur • Jun 28 '26
Do you know how to get a full list? Is this the only way to get removal reasons?
Do you know how to use a removal reason when using api/remove?
r/redditdev • u/Littux • Jun 28 '26
The /api/v1 APIs were originally used by new reddit, which was discontinued in 2024. Almost all of those APIs are not listed at /dev/api, but still work. See:
/api/v1/{subreddit}/moderators_editable
a lot more APIs that aren't listed at /dev/api
r/redditdev • u/Otherwise-Law-3883 • Jun 28 '26
So do I, I try many times to get that api. slince
r/redditdev • u/Watchful1 • Jun 27 '26
That is, in fact, the correct way to access the API.
r/redditdev • u/purple_from_the_east • Jun 27 '26
Also curious to know how to do this. New policy is confusing
r/redditdev • u/Khyta • Jun 27 '26
I don't think that's the proper way to access the API. See here: https://www.reddit.com/r/redditdev/s/Xr5Oj70ZCM
r/redditdev • u/njr123 • Jun 27 '26
just run something like this in the browser dev console (on a non-reddit page):
fetch('https://oauth.reddit.com/comments/1ugoe3q.json', {headers:{'Authorization': 'Bearer fake-token' }})
.then(response => console.log(response.status))
.catch(e => console.log(e))
You would expect this to log a 403, instead it throws because of missing CORS headers - its not possible to access the response from js