R/PAN support
See original GitHub issueDescribe the solution you’d like
Is anyone already working on support for R/PAN (Reddit Public Access Network) broadcasts? Specifically the following calls:
Get a list of valid RPAN subreddits:
curl -X GET "https://strapi.reddit.com/recommended_broadcaster_prompts" -H "User-Agent: Broadcaster 0.0.1" -H "Authorization: Bearer TOKEN"
Create a new broadcast:
curl -X POST "https://strapi.reddit.com/r/{subreddit}/broadcasts?title={title}" -H "User-Agent: Broadcaster 0.0.1" -H "Authorization: Bearer TOKEN"
Stop a broadcast:
curl -X POST "https://strapi.reddit.com/videos/{stream_id}/end" -H "User-Agent: Broadcaster 0.0.1" -H "Authorization: Bearer TOKEN"
Describe alternatives you’ve considered
No response
Additional context
No response
Issue Analytics
- State:
- Created 2 years ago
- Comments:8 (5 by maintainers)
Top Results From Across the Web
Issues · reddit/rpan-studio - GitHub
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the...
Read more >r/pan - Reddit
r/pan: This was the official discussion community for the Reddit Public Access Network. RPAN was a public network made up of live broadcasts...
Read more >Apply for patient financial assistance - PAN Foundation
Get help with out-of-pocket costs. Our eligibility finder will determine if you are eligible for assistance, check for open funds, and provide additional ......
Read more >Bi/Pan Support Group | Counseling Services Center
The Bi/Pan Support Group is a group open to students exploring shared aspects of identity. This group welcomes all students who identify with...
Read more >Firewall and PAN-OS Support of IoT Security
IoT Security support varies by firewall model and PAN-OS version. ... For Palo Alto Networks next-generation firewalls running PAN-OS 8.1, ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
You can access the access token with
reddit._core._authorizer.access_token
just note that you will have to refresh this yourself if you plan on making requests manually without PRAW/prawcore.In which variable is the access token stored in PRAW? I’d like to write my own RPAN code for the time being.