Hello, relatively recently Vkontakte opened the Streaming API , but there is not much information on it 2 articles on Habré, and documentation with examples of use on Go. With getting the rules, I figured out:
function GetRules($end_point, $stream_key) { $resp = 'https://'.$end_point.'/rules?key='.$stream_key; $resp = file_get_contents($resp); $resp = json_decode($resp, true); return $resp; } But with the addition of the rules, I did not understand, here is the documentation , and the article on the site . But I don’t understand how to send an add request with PHP and what is the link for the request? Please help.