Category:Cypherpunk
Revision as of 18:58, 18 August 2023 by RobertBushman (talk | contribs)
Cypherpunk is a genre of fiction closely related to CyberPunk. It involves near-future technology themes, but focuses more on cryptography, decentralization, and network theory than on hacking, cracking, and culture jamming (though it often incorporates those elements in less central story lines).
Reddit OAuth2
- https://www.reddit.com/r/redditdev/wiki/oauth2/explanation/
- https://www.reddit.com/dev/api/oauth/
- https://github.com/reddit-archive/reddit/wiki/OAuth2
Example Curl Request
curl
-X POST
-d 'grant_type=password&username=reddit_bot&password=snoo'
--user 'p-jcoLKBynTLew:gko_LXELoV07ZBNUXrvWZfzE3aI'
https://www.reddit.com/api/v1/access_token
Real Curl Request
curl
-X POST
-d 'grant_type=client_credentials'
--user 'client_id:client_secret'
https://www.reddit.com/api/v1/access_token
One Line
curl -X POST -d 'grant_type=client_credentials' --user 'client_id:client_secret' https://www.reddit.com/api/v1/access_token
Oauth Data Call
$ curl -H "Authorization: bearer J1qK1c18UUGJFAzz9xnH56584l4" -A "Traxelbot/0.1 by rbb36" https://oauth.reddit.com/api/v1/me
$ curl -H "Authorization: bearer J1qK1c18UUGJFAzz9xnH56584l4" -A "Traxelbot/0.1 by rbb36" https://oauth.reddit.com/r/news/top?t=day&limit=100
- https://old.reddit.com/r/worldnews/top/?sort=top&t=day
- /r/subreddit/top?t=day&limit=100
- count=100&
Reddit Python
pip install aiofiles aiohttp asyncio
In The News
- 50% of Environmentalists Left Twitter, Risk of Losing Environmentalist Public Discourse
- 52 doctors behind social media spread of covid misinfo
Subcategories
This category has the following 3 subcategories, out of 3 total.
Pages in category "Cypherpunk"
The following 7 pages are in this category, out of 7 total.