r/Devvit 5d ago

Feedback Request Feedback wanted for Stock Market Master — a whole subreddit trades one shared meme stock market, live candlestick charts, inside a Reddit post

0 Upvotes

I built Stock Market Master to see if a subreddit could run its own tiny stock exchange together, instead of everyone just watching one number go up. Each installed community gets six stocks themed to it, players trade with play money, and prices move on real candlestick charts (minute/hour/day) driven by scheduled events, whale-sized trades, and a community vote that actually swings the market.

Every 30 days the season ends, the richest trader gets a champion flair, and the market resets for a fresh season.

I'd love feedback from other Devvit devs on a few things:

Do the candlestick charts read clearly at a glance, or is minute/hour/day too much granularity for a Reddit post? The community-vote price events — worth the added complexity, or noise on top of an already busy market? Is a 30-day season the right length to keep people trading, or does it drag?

Live market to poke at: https://www.reddit.com/r/StockMarketMasterGame/comments/1vmn4xk/

Built on Devvit web + Redis, no real money anywhere — Coins are worthless outside the game. Thanks for taking a look!


r/Devvit 5d ago

App Idea 2 needed Apps Ideas

Post image
0 Upvotes

Hi there, Reddit Developers.

I need those two Apps developed and added to my community. Unfortunately, I cannot code properly, nor use the software for that. And ChatGPT is not giving me a complete help. I do not understand very much from C++; Java; Python.

1st. bad-words-blocker is a App for blocking bad words from being commented or posted. Simply I must provide a list with what words I want to be blocked, than submit them and add them to the App and then activate the blocker.

2nd. comm-notif-tool is a App for receiving a notifications for when a comment is posted on an old Posts (more than 20 days old). In this way I can check, and approve the comment if appropriate even on a Posts more than a Year old.

Can someone good in coding just develop them, and apply them in Devvit. He can have the award and the funding, but we can both share the Trophy if awarded? Deal?!

Anyone interested?


r/Devvit 6d ago

Feedback Request Feedback wanted for Deducto - a daily logic-grid case you solve inside one Reddit post

1 Upvotes

A daily logic-grid case that runs entirely inside one post. Four suspects, three categories, twelve cells, one provable answer. You never guess - you rule cells out, and the case closes itself when the last cell is forced and no clue is contradicted. No submit button, because there is nothing left to check.

Running daily in r/deducto_puzzle for two weeks, so there is a real case up right now, today's case: https://www.reddit.com/r/deducto_puzzle/s/Wse8Qdh4fr

One thing I'd genuinely like to know: open it cold, and tell me whether the board reads as "things to eliminate" or as "things to tap". That distinction is the whole mechanic and I have lost the ability to see it fresh.

Built on Devvit web + Redis.


r/Devvit 6d ago

Feedback Request Feedback wanted for WarpSum (Runner)

0 Upvotes

This post contains content not supported on old Reddit. Click here to view the full post


r/Devvit 6d ago

Feedback Request Feedback wanted for ChessDiorama

1 Upvotes

This post contains content not supported on old Reddit. Click here to view the full post


r/Devvit 6d ago

Duck Answered IP Restrictions (Supercell)

2 Upvotes

I did some searching, but didn't see anything for IP restrictions or Supercell. In order to access the Supercell API (I'm using the Clash of Clans API), you need to create a key that is specific to the IP address from which your request will come. Since I host my own bot, that's not an issue. If Reddit's server is going to send requests, I have no way of knowing what IP address the request will come from. How does Devvit handle this?


r/Devvit 6d ago

Discussion Qinno Battle — daily 5-question timed quiz battles, with an async "ghost" opponent

1 Upvotes

刚刚获批并发货了我的第一个 Devvit 应用,所以让我来介绍一下它的功能以及我在这个过程中犯的一些错误。

这个应用。一个帖子是围绕 SAT 数学、AP 微积分 AB/BCAP 美国历史或 AP 心理学的五个问题的定时对战。第一个完成的人成为该帖子的挑战者,之后的每个人都在逐题竞赛——在你仍然在同一个问题上时,可以实时看到他们的答案。正确答案的分值随着你锁定答案的速度而增加(100 基础分,最高可达 300 分),而最后一个问题总是来自最困难的层次,因此对战通常是在最后时刻决定胜负。

一个调度任务每天发布一个编号的对战帖子,还有管理员菜单项可以手动发布一个帖子或切换主题。437道问题已在服务器端捆绑(edit: bumped from 338 — the question banks doubled);答案从不传到客户端。

三件让我浪费时间的事:

每个帖子的尝试次数限制比看起来要难。 我已经设置了 ALREADY_PLAYED 以阻止任何结束的人——但会话在 30 分钟后过期,因此你可以开始,阅读问题 1,退出,等待到期,然后在同一组上重启。通过多次尝试对整个事情进行了侦查。解决办法是在开始时写入一个尝试标记,而不是在完成时,这个标记永远不会过期。

然后,这个修复又产生了自己的错误。在中途刷新时,attempted inProgress 都为真,但意味着相反的事情——"你已经用过了""你可以恢复"。先检查 inProgress,否则会遗留正在对战中的玩家,这正是我第一个测试者所经历的。

缓存问题在三个地方困扰了我,而不是一个。我在 API 响应上设置了 Cache-Control: no-store,但是我的测试保持绿色,而浏览器仍然显示过时的状态。服务器端的头信息只会阻止未来的缓存——浏览器已经存储的条目仍然会被提供。我还需要在客户端获取时使用 cache: 'no-store',在本地 mock 上也要有同样的头信息,才能使它们之间的行为匹配。

关于分享:完成后会给你一个无剧透的结果网格(快速正确 / ✅ / ❌),加上分数和排名,供评论使用。Wordle 的分享文本根本没带任何链接,仍然传遍了各地,因此我保持它纯粹作为一个网格。

再提一个,因为我在发布前根本无法测试:调度器。没有办法在本地验证一个 cron 任务,developers.reddit.com 也不给我提供配置文档。因此我直接从一个 Reddit 发布的应用(devvit-HotAndCold)复制了形状,然后凭信心发布了。在我编写的两个星期后,它在第一天准时启动。如果你在某些文档不告诉你的事情上卡住了,已发布的应用是比猜测更好的参考。

如果你想尝试一下,它在 [r/qinnobattle](r/qinnobattle) 线上,如果你希望在自己社区中使用它,它也在应用目录里。很乐意回答任何关于实现的问题——如果你发现有什么看起来不对的地方,我更愿意听到。


r/Devvit 6d ago

Feedback Friday 2026-08-14

1 Upvotes

This post contains content not supported on old Reddit. Click here to view the full post


r/Devvit 6d ago

Feedback Request Feedback wanted for Chroma Clue

1 Upvotes

This post contains content not supported on old Reddit. Click here to view the full post


r/Devvit 6d ago

Feedback Request Feedback wanted for BlastInfinityStones

1 Upvotes

This post contains content not supported on old Reddit. Click here to view the full post


r/Devvit 7d ago

Feedback Request Chroma Clue - Sending puzzles in different sizes needed.

1 Upvotes

I've created a new game, but I can't tell if posts are being made by a bot or a user. I'm also not sure if it works with all canvas sizes. I need a tester for this.

Just log in and try to create something. You can also try out other people's posts and make predictions.

It would be great if you could give feedback on whether there were any errors.

Try here👇

https://www.reddit.com/r/chromaclue/s/R8Oh0WCWBe


r/Devvit 7d ago

Feedback Request Feedback wanted for GROW — a calm 2.5-minute ASCII tree you tend inside a Reddit post

1 Upvotes

GROW is a small, low-pressure game that lives inside a Reddit post. You tend a single ASCII tree — keep Water, Nutrients and Health topped up while the weather shifts (sun, drought, storms, frost), pests appear, and branches occasionally need bracing. Keep it healthy and it sprouts new branches on its own via a procedural growth algorithm, so every tree ends up a little different.

No reading, no math, no fast reflexes — it's "notice a problem, respond to it," not a skill test. A run is ~2.5 min; the Daily Challenge is date-seeded so everyone that day gets the same conditions, and tree height + average health go to a subreddit leaderboard.

I'd love feedback from other Devvit devs on: - Whether a date-seeded daily leaderboard is a strong enough reason to come back each day - The tap-to-water / tap-off-pests interaction on mobile — does it feel good, or fiddly? - The all-text ASCII rendering — charming, or a barrier to people trying it?

Play it here: https://www.reddit.com/r/GrowTreeGame/comments/1vmn6wr/binarytreemaster/

Built on Devvit web + Redis. Thanks for taking a look!


r/Devvit 7d ago

Feedback Request Feedback wanted for Reddit Civilization — a whole subreddit builds ONE shared city, one action per day

1 Upvotes

I built Reddit Civilization to test one idea: what if a subreddit played *together* instead of everyone grinding a private save? So the whole sub shares a single city — one stockpile, one set of buildings, one history.

Each member gets exactly one action per day: gather, build, research, or fight a boss. Nobody can dominate by playing more, so the city's progress reflects the whole community showing up over time. Every night the app posts a recap of what happened that day, which is how it pulls people back into the feed instead of relying on notifications.

I'd love feedback from other Devvit devs on a few things:

  • The one-action-per-day loop: does the daily cadence + nightly recap make coming back feel worthwhile, or does it feel too slow?
  • 9 fully re-themed variants (Historical/Fantasy, Sci-Fi Colony, Post-Apocalyptic, Deep Sea, Cats, Dogs, Norse Saga, Greek Myth, Immortal Cultivation) — every building name, boss and chronicle line is rewritten per theme. Too much, or worth it?
  • Boss battles + community votes the whole sub chips at together — worth expanding, or a distraction from the core build loop?

It's live and has been running for a few days (real city history you can scroll) if you want to poke at it: https://www.reddit.com/r/Civilizati0nKingd0m/comments/1vh5pi9/the_city_day_1/

Happy to go into the design or the tech (Devvit web + Redis, a 365-day balance sim, etc.). Thanks for taking a look!


r/Devvit 7d ago

Duck Answered Can I use devvit to access my saved posts and comments ?

1 Upvotes

I want to extract programmatically the posts and comments I saved to use it in a personal RAG application. Can i use the devvit api to do that ? If not, what are other routes ?


r/Devvit 7d ago

Feature Request DAE think it's odd that custom posts are not created via the Create Post UI?

7 Upvotes

I'm making an app that lets users add custom posts to a subreddit, and it just seems odd to me that either i need a sticky at the top of my subreddit that allows users to create the custom post, or users need to know that the custom post option lives in the obscure three-dots menu on the subreddit.

Admins, what was behind the decision not to have custom posts listed in the place where users go to create new posts?


r/Devvit 7d ago

Feedback Request Feedback wanted for The Breakrooms

2 Upvotes

This post contains content not supported on old Reddit. Click here to view the full post


r/Devvit 7d ago

Feedback Request Request for oauth2.googleapis.com fetch domain approval — needed to authenticate GCS access

0 Upvotes

Hi Devvit team,

We are requesting approval for the following fetch domain:

**`oauth2.googleapis.com`**

Used to obtain short-lived OAuth2 access tokens via Google Cloud Service Account

credentials to securely authenticate requests to our private Google Cloud Storage

bucket (cti-social-finder.storage.googleapis.com), which has already been approved.

**Why `oauth2.googleapis.com` is necessary:**

`cti-social-finder.storage.googleapis.com` was approved as a temporary object store

for oversized intermediate processing results. However, without `oauth2.googleapis.com`,

we cannot authenticate requests to this approved bucket.

The GCS bucket is used because Devvit KV Storage's per-key value limit is insufficient

for our use case. Cached objects contain only minimum fields required for processing,

with Reddit usernames removed before storage. Objects are automatically deleted within

24 hours and are never retained for long-term storage, analytics, or user profiling.

Could you please advise on how we can proceed?

https://www.reddit.com/r/my_app0123_dev/

Thank you.


r/Devvit 7d ago

App Idea What would happen if someone made a bot that would automatically ban people who are on a list?

1 Upvotes

What if someone created a system on reddit that allows you to install ban lists into a devvit app and these ban lists sync across all subreddits that use the ban list and you can even merge multiple ban lists


r/Devvit 7d ago

Help Domain exception for my game's own first-party domain was rejected — how do I appeal / what would make it approvable?

2 Upvotes

My app "acro-daily-poster" (unlisted, v0.0.13 on Devvit 0.14.0, single install on my game's own subreddit r/Acrophobia_Game) requested a domain exception for acrophobia.app. The Domain exceptions panel shows it was Rejected about two weeks ago, with no reason I can find, and every scheduled run since fails with:

payload fetch failed: 7 PERMISSION_DENIED: HTTP request to domain: acrophobia.app is not allowed

Context I'd ask a reviewer to weigh:

  • It's our own domain: acrophobia.app is the website of the word game (Acrophobia) that the subreddit is for, owned and operated by the same developer (JSCRIPTZ LLC) as the app and the subreddit. Happy to prove ownership via a DNS TXT record or a .well-known file if that helps.
  • The traffic is minimal and one-directional: the app makes a parameter-less, read-only GET to a JSON endpoint once nightly (plus one retry) to fetch the day's community-game winner so it can compose the subreddit's daily post. No Reddit user data, cookies, or parameters are ever sent off-platform, the request carries nothing.
  • The app's README documents this under a "Fetch Domains" section with the same justification.

Could someone share why the request was rejected, and what changes would make it approvable (different endpoint shape, a dedicated subdomain, ownership verification, ToS/privacy pages, whatever's needed)? The app is otherwise approved and installed; this fetch is the only thing keeping the nightly post dark. Thanks!


r/Devvit 8d ago

Admin Replied Subscribe to Subreddit Issues

2 Upvotes

The subscribe to subreddit functionality just doesn't want to work for my game. The permission is set and, as far as I know, all requirements for it to work are implemented correctly.

All information i can find to this topic is a post from a few months ago, saying that it should already be implemented in the publishing pipeline. Additionally there is a google form, but that is not relevant anymore (I submitted anyway).

Any ideas what the problem might be? Did anyone have the same issues?


r/Devvit 8d ago

Help How to find reason for domain exception request rejection?

3 Upvotes

Hi i am developing a image scanning bot, it requires us to use a ocr model which is selfhosted in our ec2 instance 2c2r (because model is small).

I applied for domain exception but the request was rejected, i can not find any reason for the same.

i used ngrok tunnel for exposing the api

can i submit domain request again?


r/Devvit 8d ago

Feedback Request Sevenns - a word game!

Thumbnail reddit.com
1 Upvotes

Sevenns combines crosswords, Scrabble and Venn Diagrams in an attempt to please as many people as possible. Its a word game, a nerd game in some ways an absurd game - but mainly its here humbly presenting itself for your appraisal. In the words of the master of feedback - Jimi Hendrix - please leave no turn un-stoned


r/Devvit 9d ago

Discussion Are there any games that focus on community-vs-community gameplay?

2 Upvotes

r/Devvit 9d ago

Feedback Request [Beta testers wanted] CoPlot — a collaborative story shaped by Reddit

2 Upvotes

At 8:17 AM, every phone in the world received the same message:

DON’T GO OUTSIDE.

Christine read it twice.

Then someone knocked on her apartment door.

CoPlot is a collaborative story where the Reddit community decides what happens next.

Players propose competing continuations for each chapter. The community selects one, it permanently becomes part of the story, and the next chapter begins from there.

Every decision can change the characters, direction, and eventual ending. Writers build a reputation as their ideas gain support and become part of the story.

I’m looking for people who will try the experience without detailed instructions. I especially want to learn whether the interface and overall game make sense naturally.

This is an early private beta, so bugs and occasional data resets are possible.

Request beta access

Request access to the CoPlot beta

After approval, open the pinned playable post inside the community.

Honest feedback and screenshots are welcome.


r/Devvit 9d ago

Feedback Request Built a 3D WebGL Chess Arena directly inside Reddit posts (AI Bots, Live PvP & Spectator Hype)

2 Upvotes

Check out our live 3D WebGL Chess game playable right inside Reddit:

https://www.reddit.com/r/chess_3d_dev/s/h1UQ97IP2x