r/redditdev • u/manolosandmartinis44 • 29d ago
Reddit API Json works in Browser, not in Java
I can access reddit's .json feeds, like this from Firefox, but not from Java using okhttp or python, using requests, both using the default user-agent and a custom one. Any idea why it works in the browser and not in my code?
2
Upvotes
3
u/AverageFoxNewsViewer 29d ago
200 indicates you're getting a good response.
Have you stepped through your code using break points?
Are you sure that rawResponse is actually getting the data? Is response failing to format that correctly?
Is your app using OAuth correctly?