EDIT: Moved to https://newpointe.github.io/churchonline-api-docs
/api/v1/upcoming_event_times
Gets the times of upcomming events
function getIps() { | |
return new Promise((resolve, reject) => { | |
const candidateIps = new Map(); | |
const rtc = new RTCPeerConnection({}); | |
rtc.onicecandidate = (e) => { | |
if(e.candidate) { | |
candidateIps.set(e.candidate.candidate.split(' ')[4], e.candidate.candidate) | |
} | |
else { | |
rtc.close(); |
// <copyright> | |
// Copyright by the Spark Development Network | |
// | |
// Licensed under the Rock Community License (the "License"); | |
// you may not use this file except in compliance with the License. | |
// You may obtain a copy of the License at | |
// | |
// http://www.rockrms.com/license | |
// | |
// Unless required by applicable law or agreed to in writing, software |
EDIT: Moved to https://newpointe.github.io/churchonline-api-docs
/api/v1/upcoming_event_times
Gets the times of upcomming events
Misc URLs:
General URL Parameters:
platform
- Specifies the platform to use for event statsuser_agent
- Used to automatically detect platform#include <stdio.h> | |
#include <stdlib.h> | |
/** | |
* ConwaySort: | |
* sorts an array by ignoring it and then | |
* printing out a new, sorted array with its | |
* own "Alternative Values." | |
* | |
* If the new array does not appear sorted, | |
* you have been manipulated by MSM |
I hereby claim:
To claim this, I am signing this object:
This is unofficial documentation for Picarto.tv's service APIs. I'm not responsible for anything you do with this information; it is provided as is with no guarantees.
It looks like there is an official well-documented api now: https://docs.picarto.tv/api/ Please use that instead!
The permissions system allows you to control who has access to run commands and make changes to configuration settings.
#Basics
###Permission Ids
Each permission object has a unique id. While technically this id could be anything (minus spaces), its recommended they be in the format type.name
. For example, the command to set a timeout, !settimeout
, uses the permission cmd.settimeout
to determine who is allowed to set a timeout's duration. Plugins may also opt to use permissions for other abilities as well, such as using a timeout.bypass
permission to allow a person to bypass a timeout or even using a permissions object to filter who is included in a raffle.
###Permission Levels/Ranks