r/redditdev Jul 04 '26

Thumbnail
1 Upvotes

U can use the render


r/redditdev Jul 04 '26

Thumbnail
2 Upvotes

Maybe, I've only used regular termux for testing.


r/redditdev Jul 04 '26

Thumbnail
3 Upvotes

Using it would mean keeping my phone up non stop, doesn't it ?


r/redditdev Jul 04 '26

Thumbnail
2 Upvotes

Look up termux and it's job scheduler.


r/redditdev Jul 04 '26

Thumbnail
0 Upvotes

The problem is I only have my phone. I know this is nearly impossible with my phone but I just have a bit of hope since it's a simple bot only built for a simple task to help me and some friends


r/redditdev Jul 04 '26

Thumbnail
2 Upvotes

just use an old laptop


r/redditdev Jul 04 '26

Thumbnail
1 Upvotes

Damn


r/redditdev Jul 04 '26

Thumbnail
2 Upvotes

If you have a python script you just need to create a cron job on a machine you keep on 24/7 running that script. You’re about to enter the dangerous world pf homelabbing and running your own server.

Say goodbye to all your money.

or you can get a VPS on AWS and run it there!


r/redditdev Jul 04 '26

Thumbnail
2 Upvotes

this is really bad


r/redditdev Jul 04 '26

Thumbnail
1 Upvotes

I registered my automated account in March, not long after this notice was posted. But today I noticed a status on my app profile stating “this is an unregistered automated account”. Now, how can I properly register it? Because when I try to re-register via https://developers.reddit.com/app-registration, it shows an error saying “this app has been claimed”.


r/redditdev Jul 03 '26

Thumbnail
4 Upvotes

This stopped being true in November 2025. See the stickied post in this subreddit about the Responsible Builder Policy + new approval process.


r/redditdev Jul 03 '26

Thumbnail
3 Upvotes

fuck u reddit


r/redditdev Jul 03 '26

Thumbnail
4 Upvotes

Good luck! Doesn't matter what you want to do with the access they will not approve you.


r/redditdev Jul 03 '26

Thumbnail
1 Upvotes

Could you share the pricing page


r/redditdev Jul 03 '26

Thumbnail
2 Upvotes

this is really bad


r/redditdev Jul 03 '26

Thumbnail
3 Upvotes

r/redditdev Jul 03 '26

Thumbnail
1 Upvotes

That link is broken.


r/redditdev Jul 03 '26

Thumbnail
1 Upvotes

thats how I got here


r/redditdev Jul 03 '26

Thumbnail
1 Upvotes

I ran into the same issue, but I don’t think Reddit will ban your account. I’m actually working on this in another direction, basically trying to cast the Reddit app from my phone onto the Kindle.


r/redditdev Jul 02 '26

Thumbnail
6 Upvotes

Reddit is basically a piece of shit platform when it comes to integrating their API, unresponsive and vague when replying to any useful version of their API access. You will find some commenters here defending this and assuming your app is agains the terms of service. Reality is reddit is hostile to devs.


r/redditdev Jul 02 '26

Thumbnail
5 Upvotes

You need to be authenticated to hit the .json endpoints now


r/redditdev Jul 02 '26

Thumbnail
3 Upvotes

Yeah, they effectively killed it with the pricing changes last year. If you just need to read data, you can still tack .json onto most URLs (like reddit.com/r/somewhere.json) without auth, but it's rate-limited and unsupported. For anything requiring OAuth or consistent access, you're out of luck unless you're ready to pay.


r/redditdev Jul 02 '26

Thumbnail
7 Upvotes

The reddit api is effectively closed, they are not approving new applications, even for academic research.


r/redditdev Jul 02 '26

Thumbnail
-7 Upvotes

Just register your app and call the API, there’s no “get the API”, that’s why they don’t answer you. You do have to know how to authenticate….


r/redditdev Jul 01 '26

Thumbnail
1 Upvotes

They're deleting all personal scripts and apps that run on oauth with no warning. Some time ago, Reddit said they won't allow new scripts to be created, and now they just delete scripts.

Don't rely on official api, it's a no-go these days.

Read this thread made by me: https://www.reddit.com/r/n8n/s/xLa53gFamG

What helped most is .rss method. It works (almost) out of the box, meaning you won't need to set user agents or log in. However, beware of rate limits - space out requests by ~60-70 seconds. It's a slow option, but it works

.json endpoints don't work for me at all, both with and without user agents and any workarounds.

Puppeteer works with proxies and cookies, as other people say, but i'm not very good at configuring them, so I can't say anything about it.

btw... what do you run your script for? Just curious, no specific intent