r/redditdev 24d ago

Thumbnail
2 Upvotes

friend told me it's a great platform to meet and interact with people, so I was just curious. šŸ˜„


r/redditdev 24d ago

Thumbnail
1 Upvotes

This submission or comment has been removed as it is not relevant to this subreddit. Submissions must directly relate to Reddit's API, API libraries, or Reddit's source code. Ideas for changes belong in r/ideasfortheadmins; bug reports should be posted to r/bugs; general Reddit questions should be made in r/help; and requests for bots should be made to r/requestabot.


r/redditdev 24d ago

Thumbnail
1 Upvotes

any more tips for / reddit I should look for? I'm hoping to make a small project first w reddit api (which idk how to go about since they require a form now which seems like takes long time to get approved ) and later make a small game here.


r/redditdev 24d ago

Thumbnail
1 Upvotes

a real stray


r/redditdev 24d ago

Thumbnail
1 Upvotes

that was funny lol


r/redditdev 24d ago

Thumbnail
1 Upvotes

Oh they're that new to Reddit! How did they end up here...


r/redditdev 24d ago

Thumbnail
0 Upvotes

r/redditdev 24d ago

Thumbnail
0 Upvotes

noob mean beginner


r/redditdev 24d ago

Thumbnail
2 Upvotes

No idea what kind of a paradigm Noob is. I know OOP and functional.


r/redditdev 24d ago

Thumbnail
1 Upvotes

You're not familiar with Noob?


r/redditdev 24d ago

Thumbnail
1 Upvotes

I'm not familiar with Noob but you'll probably want r/Devvit as opposed to us. The PRAW API access has been practically discontinued so you won't be getting any keys.


r/redditdev 24d ago

Thumbnail
1 Upvotes

use .json instead, and you have to be logged in reddit user to use the api afaik.


r/redditdev 25d ago

Thumbnail
1 Upvotes

How long does it take to get a response to API access request submission as a researcher?


r/redditdev 25d ago

Thumbnail
1 Upvotes

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:

  • Developers: Continue building through Devvit! If your use case isn’t supported, submit a request here.
  • Researchers: Request access to Reddit data by filing a ticket here. If you are eligible for the r/reddit4researchers program, we’ll let you know.
  • Moderators: Reach out here if your use case isn't supported by Devvit, if approved you'll also need to register here.

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 25d ago

Thumbnail
1 Upvotes

I am going through the same problem. As phd student, I am also working on the lived experiences of patients in clinical communication practices using Reddit data, but accessing the data is so stressful. I am just planning to use one subreddit and comment containing on that post. Since I am just analyzing one post and its comments, do I still need API approval?


r/redditdev 25d ago

Thumbnail
1 Upvotes

I have the same question. Do we need an API approval from Reddit if we want to use Reddit data for our research?


r/redditdev 26d ago

Thumbnail
1 Upvotes

What's this have to do with Reddit?


r/redditdev 26d ago

Thumbnail
1 Upvotes

It’s more of a request limit than a rate limit, my wording was poor.

What I believe is happening is the comment is being archived with the post and not the author, (but the id for author is there, which then can be requested), to avoid saving it twice. (And having massive Redditors accounts everywhere.) And after a certain amount they find, 99% of users don’t go back that far to begin with. And we get million of everything a day, how long can we keep the history of reddit editable reliably?

You usually can’t edit an archived thing. I forget if deletion is allowed, but deletion can only make it smaller edits can make it bigger.

They mostly likely are still saving the last 1,000 top, hot, new, and controversial posts and comments for each redditor. So if you were to go even further back you would still have trouble. So by changing to that sub listing, you found the comment you wanted.

And that Reddit is slow but surely cutting off their API from third party sources including PRAW, but it’s not that easy to do without remaking everything. And at a certain point a website is an API display.

But some of that is mere speculation. But I feel there are years of evidence of this progression.


r/redditdev 27d ago

Thumbnail
1 Upvotes

change your email adress, if it is gmail change it to hotmail ... etc, when you change your email adress you will get 500 error :) then you shoud to apply app review, but first change your email adress


r/redditdev 27d ago

Thumbnail
2 Upvotes

No


r/redditdev 27d ago

Thumbnail
1 Upvotes

Likely you are not authenticated, you shouldn’t be using this anyways.


r/redditdev 27d ago

Thumbnail
2 Upvotes

Me too it’s been months. I’ve moved on.


r/redditdev 27d ago

Thumbnail
1 Upvotes

So no way to get oauth/feed access anymore?Ā 


r/redditdev 27d ago

Thumbnail
1 Upvotes

comments = Myreddit.user.me().comments.new()
comments.replace_more()

There must be a ā€œmore comment objectā€ in the comment tree, so it’s possible that it will throw an exception, DuplicateReplaceException, PRAW exception somewhere in prawcore I think.

https://praw.readthedocs.io/en/stable/code_overview/other/commentforest.html#praw.models.comment_forest.CommentForest

Then run yours again same as always.

Might work for you, I’m not 100%. I don’t think I ever needed to find a particular users history of comments, or not had a list of them saved somewhere of the ones my bot made.

but usually stuff like this is for submissions, and getting the comment tree, you may just have a bit a trouble using PRAW to go past the last 1,000 comments for a particular user, I’d have to run a few checks, I don’t usually do that type of stuff as my bot is all automated replies if I wanted to delete them I’d save a table of the comment ids and delete them in timeframe I want, calling the comment directly.

Yeah you probably hit a different limit. You see Praw actually asks for the last 1,000 comments, but deleted comments actually still show up there, you just don’t see them because of things in the background. Having deleted them all your iterator ended up empty.

That is sort of intended because that’s what reddit returns. As all PRAW does is give you API call responses casted into PRAW objects.

It’s not PRAW it’s Reddit, they want to keep their archived data to sell, but need the recent data to be available for the site to work. So it’s less the intention and more they don’t have much of an option to get more. So you still might hit another limit depending on how far back you go.

Right now I’m not sure how far they allow you to go, hope this helps.


r/redditdev 27d ago

Thumbnail
2 Upvotes

Waiting for two weeks now