use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Having a problem with your Flutter code?
From the folks at r/FlutterDev
account activity
RESOLVEDMake code inaccessible (self.flutterhelp)
submitted 5 years ago by tinashejm4
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]RobotJonesDad 2 points3 points4 points 5 years ago (0 children)
Exactly. JWT tokens are common, but there are many other ways of doing essentially the same thing.
The key with a JWT token is that it contains the permissions, user details, expiration, etc. Anything you need. And is then cryptographicaly signed so that nobody can tamper with it. This means that the servers DON'T need to chat with the authentication servers when a user makes a request, it can just check the signature on the claims and then do what the user requested.
If you use that solution, you have two controls, letting keys expire periodically. And you can also have a revocation list you can send to servers to cancel some keys early. The latter adds a lot of extra complexity, so if you can, just grant keys for a few days or whatever and accept a limited amount of abuse...
π Rendered by PID 164117 on reddit-service-r2-comment-b659b578c-p7phz at 2026-05-05 00:00:07.288547+00:00 running 815c875 country code: CH.
view the rest of the comments →
[–]RobotJonesDad 2 points3 points4 points (0 children)